Start by setting the parameters for running RShade.
# Input lines can come from either a shapefile or file geodatabase.
# If you are using a shapefile, the input_lines_feature_name can be left as is,
# as it will be ignored by the code.
input_lines <- "~/shared/RShade/trimmed_17100307.shp"
input_lines_feature_name <- "NHDFlowline"
sample_point_distance <- 50
# Sample angles can only contain the angles 0, 45, 135, 180, 225, 270, 315.
# Values can be removed, but new values cannot be added
star_sample_angles <- c(0, 45, 90, 135, 180, 225, 270, 315)
# Distances are in meters
star_sample_distances <- c(3, 6, 9, 12, 15, 18, 21, 24, 27, 30, 33, 36, 39)
# If you wish to use the provided grids for horizon angle, vegetation cover, and
# vegetation height, set the vales below to FALSE. Otherwise, populate with the
# file path "data/yourGrid.tif".
external_horizon_angle <- FALSE
external_veg_cover <- FALSE
external_veg_height <- FALSE
# If you wish for to provide your own table containing BFW calculations, replace
# the FALSE value of external_BFW_table with a path to your csv or excel
# spreadsheet "data/yourBFW.xlsx" or "data/yourBFW.csv".
# Table MUST contain the fields "NHDPlusIDt" (NHDPlusID as text) and "bfwidth".
# When using a csv, ensure that the NHDPlusIDt field saved as the full ID and not
# a scientific notation number.
external_BFW_table <- FALSE
Next, run the initialization processes. If this is your first time running RShade, this step may take a few minutes as it installs the required libraries and downloads the required files.
source("R/initialize.R")
Loading Required Packages
package ‘purrr’ was built under R version 4.0.5
Installing Missing Packages
there is no package called ‘nhdplusTools’also installing the dependencies ‘R.oo’, ‘R.methodsS3’, ‘jpeg’, ‘rjson’, ‘RANN’, ‘R.utils’, ‘rosm’, ‘prettymapr’
there is no package called ‘reticulate’Downloading Required Files
Completed 256.0 KiB/6.4 GiB (1.0 MiB/s) with 2 file(s) remaining
Completed 512.0 KiB/6.4 GiB (2.0 MiB/s) with 2 file(s) remaining
Completed 768.0 KiB/6.4 GiB (2.9 MiB/s) with 2 file(s) remaining
Completed 1.0 MiB/6.4 GiB (3.9 MiB/s) with 2 file(s) remaining
Completed 1.2 MiB/6.4 GiB (4.7 MiB/s) with 2 file(s) remaining
Completed 1.5 MiB/6.4 GiB (5.6 MiB/s) with 2 file(s) remaining
Completed 1.8 MiB/6.4 GiB (6.4 MiB/s) with 2 file(s) remaining
Completed 2.0 MiB/6.4 GiB (7.3 MiB/s) with 2 file(s) remaining
Completed 2.2 MiB/6.4 GiB (8.1 MiB/s) with 2 file(s) remaining
Completed 2.5 MiB/6.4 GiB (8.9 MiB/s) with 2 file(s) remaining
Completed 2.8 MiB/6.4 GiB (9.8 MiB/s) with 2 file(s) remaining
Completed 3.0 MiB/6.4 GiB (10.4 MiB/s) with 2 file(s) remaining
Completed 3.2 MiB/6.4 GiB (11.0 MiB/s) with 2 file(s) remaining
Completed 3.5 MiB/6.4 GiB (11.2 MiB/s) with 2 file(s) remaining
Completed 3.8 MiB/6.4 GiB (11.9 MiB/s) with 2 file(s) remaining
Completed 4.0 MiB/6.4 GiB (12.6 MiB/s) with 2 file(s) remaining
Completed 4.2 MiB/6.4 GiB (13.3 MiB/s) with 2 file(s) remaining
Completed 4.5 MiB/6.4 GiB (14.0 MiB/s) with 2 file(s) remaining
Completed 4.8 MiB/6.4 GiB (14.7 MiB/s) with 2 file(s) remaining
Completed 5.0 MiB/6.4 GiB (15.4 MiB/s) with 2 file(s) remaining
Completed 5.2 MiB/6.4 GiB (16.0 MiB/s) with 2 file(s) remaining
Completed 5.5 MiB/6.4 GiB (16.6 MiB/s) with 2 file(s) remaining
Completed 5.8 MiB/6.4 GiB (17.4 MiB/s) with 2 file(s) remaining
Completed 6.0 MiB/6.4 GiB (18.0 MiB/s) with 2 file(s) remaining
Completed 6.2 MiB/6.4 GiB (18.7 MiB/s) with 2 file(s) remaining
Completed 6.5 MiB/6.4 GiB (19.4 MiB/s) with 2 file(s) remaining
Completed 6.8 MiB/6.4 GiB (20.0 MiB/s) with 2 file(s) remaining
Completed 7.0 MiB/6.4 GiB (20.3 MiB/s) with 2 file(s) remaining
Completed 7.2 MiB/6.4 GiB (21.0 MiB/s) with 2 file(s) remaining
Completed 7.5 MiB/6.4 GiB (21.6 MiB/s) with 2 file(s) remaining
Completed 7.8 MiB/6.4 GiB (22.0 MiB/s) with 2 file(s) remaining
Completed 8.0 MiB/6.4 GiB (22.5 MiB/s) with 2 file(s) remaining
Completed 8.2 MiB/6.4 GiB (23.1 MiB/s) with 2 file(s) remaining
Completed 8.5 MiB/6.4 GiB (23.7 MiB/s) with 2 file(s) remaining
Completed 8.8 MiB/6.4 GiB (24.2 MiB/s) with 2 file(s) remaining
Completed 9.0 MiB/6.4 GiB (24.3 MiB/s) with 2 file(s) remaining
Completed 9.2 MiB/6.4 GiB (24.3 MiB/s) with 2 file(s) remaining
Completed 9.5 MiB/6.4 GiB (24.9 MiB/s) with 2 file(s) remaining
Completed 9.8 MiB/6.4 GiB (25.5 MiB/s) with 2 file(s) remaining
Completed 10.0 MiB/6.4 GiB (25.9 MiB/s) with 2 file(s) remaining
Completed 10.2 MiB/6.4 GiB (26.4 MiB/s) with 2 file(s) remaining
Completed 10.5 MiB/6.4 GiB (27.0 MiB/s) with 2 file(s) remaining
Completed 10.8 MiB/6.4 GiB (27.6 MiB/s) with 2 file(s) remaining
Completed 11.0 MiB/6.4 GiB (28.0 MiB/s) with 2 file(s) remaining
Completed 11.2 MiB/6.4 GiB (28.6 MiB/s) with 2 file(s) remaining
Completed 11.5 MiB/6.4 GiB (29.2 MiB/s) with 2 file(s) remaining
Completed 11.8 MiB/6.4 GiB (29.8 MiB/s) with 2 file(s) remaining
Completed 12.0 MiB/6.4 GiB (30.3 MiB/s) with 2 file(s) remaining
Completed 12.2 MiB/6.4 GiB (30.5 MiB/s) with 2 file(s) remaining
Completed 12.5 MiB/6.4 GiB (31.1 MiB/s) with 2 file(s) remaining
Completed 12.8 MiB/6.4 GiB (31.5 MiB/s) with 2 file(s) remaining
Completed 13.0 MiB/6.4 GiB (32.0 MiB/s) with 2 file(s) remaining
Completed 13.2 MiB/6.4 GiB (32.1 MiB/s) with 2 file(s) remaining
Completed 13.5 MiB/6.4 GiB (32.2 MiB/s) with 2 file(s) remaining
Completed 13.8 MiB/6.4 GiB (32.7 MiB/s) with 2 file(s) remaining
Completed 14.0 MiB/6.4 GiB (33.2 MiB/s) with 2 file(s) remaining
Completed 14.2 MiB/6.4 GiB (33.7 MiB/s) with 2 file(s) remaining
Completed 14.5 MiB/6.4 GiB (33.8 MiB/s) with 2 file(s) remaining
Completed 14.8 MiB/6.4 GiB (33.7 MiB/s) with 2 file(s) remaining
Completed 15.0 MiB/6.4 GiB (33.5 MiB/s) with 2 file(s) remaining
Completed 15.2 MiB/6.4 GiB (34.0 MiB/s) with 2 file(s) remaining
Completed 15.5 MiB/6.4 GiB (34.4 MiB/s) with 2 file(s) remaining
Completed 15.8 MiB/6.4 GiB (34.9 MiB/s) with 2 file(s) remaining
Completed 16.0 MiB/6.4 GiB (35.4 MiB/s) with 2 file(s) remaining
Completed 16.2 MiB/6.4 GiB (35.8 MiB/s) with 2 file(s) remaining
Completed 16.5 MiB/6.4 GiB (36.3 MiB/s) with 2 file(s) remaining
Completed 16.8 MiB/6.4 GiB (36.6 MiB/s) with 2 file(s) remaining
Completed 17.0 MiB/6.4 GiB (37.1 MiB/s) with 2 file(s) remaining
Completed 17.2 MiB/6.4 GiB (37.5 MiB/s) with 2 file(s) remaining
Completed 17.5 MiB/6.4 GiB (38.0 MiB/s) with 2 file(s) remaining
Completed 17.8 MiB/6.4 GiB (38.1 MiB/s) with 2 file(s) remaining
Completed 18.0 MiB/6.4 GiB (38.0 MiB/s) with 2 file(s) remaining
Completed 18.2 MiB/6.4 GiB (38.4 MiB/s) with 2 file(s) remaining
Completed 18.5 MiB/6.4 GiB (38.8 MiB/s) with 2 file(s) remaining
Completed 18.8 MiB/6.4 GiB (38.5 MiB/s) with 2 file(s) remaining
Completed 19.0 MiB/6.4 GiB (38.3 MiB/s) with 2 file(s) remaining
Completed 19.2 MiB/6.4 GiB (38.7 MiB/s) with 2 file(s) remaining
Completed 19.5 MiB/6.4 GiB (39.1 MiB/s) with 2 file(s) remaining
Completed 19.8 MiB/6.4 GiB (39.3 MiB/s) with 2 file(s) remaining
Completed 20.0 MiB/6.4 GiB (39.4 MiB/s) with 2 file(s) remaining
Completed 20.2 MiB/6.4 GiB (39.7 MiB/s) with 2 file(s) remaining
Completed 20.5 MiB/6.4 GiB (39.9 MiB/s) with 2 file(s) remaining
Completed 20.8 MiB/6.4 GiB (40.2 MiB/s) with 2 file(s) remaining
Completed 21.0 MiB/6.4 GiB (40.1 MiB/s) with 2 file(s) remaining
Completed 21.2 MiB/6.4 GiB (40.4 MiB/s) with 2 file(s) remaining
Completed 21.5 MiB/6.4 GiB (40.8 MiB/s) with 2 file(s) remaining
Completed 21.8 MiB/6.4 GiB (40.8 MiB/s) with 2 file(s) remaining
Completed 22.0 MiB/6.4 GiB (41.0 MiB/s) with 2 file(s) remaining
Completed 22.2 MiB/6.4 GiB (41.5 MiB/s) with 2 file(s) remaining
Completed 22.5 MiB/6.4 GiB (41.7 MiB/s) with 2 file(s) remaining
Completed 22.8 MiB/6.4 GiB (42.1 MiB/s) with 2 file(s) remaining
Completed 23.0 MiB/6.4 GiB (42.4 MiB/s) with 2 file(s) remaining
Completed 23.2 MiB/6.4 GiB (42.1 MiB/s) with 2 file(s) remaining
Completed 23.5 MiB/6.4 GiB (42.4 MiB/s) with 2 file(s) remaining
Completed 23.8 MiB/6.4 GiB (42.4 MiB/s) with 2 file(s) remaining
Completed 24.0 MiB/6.4 GiB (42.8 MiB/s) with 2 file(s) remaining
Completed 24.2 MiB/6.4 GiB (42.6 MiB/s) with 2 file(s) remaining
Completed 24.5 MiB/6.4 GiB (43.0 MiB/s) with 2 file(s) remaining
Completed 24.8 MiB/6.4 GiB (43.3 MiB/s) with 2 file(s) remaining
Completed 25.0 MiB/6.4 GiB (43.7 MiB/s) with 2 file(s) remaining
Completed 25.2 MiB/6.4 GiB (43.2 MiB/s) with 2 file(s) remaining
Completed 25.5 MiB/6.4 GiB (43.5 MiB/s) with 2 file(s) remaining
Completed 25.8 MiB/6.4 GiB (43.8 MiB/s) with 2 file(s) remaining
Completed 26.0 MiB/6.4 GiB (44.2 MiB/s) with 2 file(s) remaining
Completed 26.2 MiB/6.4 GiB (44.3 MiB/s) with 2 file(s) remaining
Completed 26.5 MiB/6.4 GiB (44.6 MiB/s) with 2 file(s) remaining
Completed 26.8 MiB/6.4 GiB (43.8 MiB/s) with 2 file(s) remaining
Completed 27.0 MiB/6.4 GiB (44.2 MiB/s) with 2 file(s) remaining
Completed 27.2 MiB/6.4 GiB (44.4 MiB/s) with 2 file(s) remaining
Completed 27.5 MiB/6.4 GiB (44.7 MiB/s) with 2 file(s) remaining
Completed 27.8 MiB/6.4 GiB (44.9 MiB/s) with 2 file(s) remaining
Completed 28.0 MiB/6.4 GiB (44.9 MiB/s) with 2 file(s) remaining
Completed 28.2 MiB/6.4 GiB (45.1 MiB/s) with 2 file(s) remaining
Completed 28.5 MiB/6.4 GiB (45.4 MiB/s) with 2 file(s) remaining
Completed 28.8 MiB/6.4 GiB (45.6 MiB/s) with 2 file(s) remaining
Completed 29.0 MiB/6.4 GiB (45.8 MiB/s) with 2 file(s) remaining
Completed 29.2 MiB/6.4 GiB (46.1 MiB/s) with 2 file(s) remaining
Completed 29.5 MiB/6.4 GiB (46.4 MiB/s) with 2 file(s) remaining
Completed 29.8 MiB/6.4 GiB (46.6 MiB/s) with 2 file(s) remaining
Completed 30.0 MiB/6.4 GiB (46.7 MiB/s) with 2 file(s) remaining
Completed 30.2 MiB/6.4 GiB (46.3 MiB/s) with 2 file(s) remaining
Completed 30.5 MiB/6.4 GiB (46.4 MiB/s) with 2 file(s) remaining
Completed 30.8 MiB/6.4 GiB (46.7 MiB/s) with 2 file(s) remaining
Completed 31.0 MiB/6.4 GiB (46.2 MiB/s) with 2 file(s) remaining
Completed 31.2 MiB/6.4 GiB (46.3 MiB/s) with 2 file(s) remaining
Completed 31.5 MiB/6.4 GiB (46.5 MiB/s) with 2 file(s) remaining
Completed 31.8 MiB/6.4 GiB (46.8 MiB/s) with 2 file(s) remaining
Completed 32.0 MiB/6.4 GiB (47.0 MiB/s) with 2 file(s) remaining
Completed 32.2 MiB/6.4 GiB (47.4 MiB/s) with 2 file(s) remaining
Completed 32.5 MiB/6.4 GiB (47.2 MiB/s) with 2 file(s) remaining
Completed 32.8 MiB/6.4 GiB (47.4 MiB/s) with 2 file(s) remaining
Completed 33.0 MiB/6.4 GiB (47.4 MiB/s) with 2 file(s) remaining
Completed 33.2 MiB/6.4 GiB (47.5 MiB/s) with 2 file(s) remaining
Completed 33.5 MiB/6.4 GiB (47.7 MiB/s) with 2 file(s) remaining
Completed 33.8 MiB/6.4 GiB (47.8 MiB/s) with 2 file(s) remaining
Completed 34.0 MiB/6.4 GiB (47.6 MiB/s) with 2 file(s) remaining
Completed 34.2 MiB/6.4 GiB (47.8 MiB/s) with 2 file(s) remaining
Completed 34.5 MiB/6.4 GiB (48.0 MiB/s) with 2 file(s) remaining
Completed 34.8 MiB/6.4 GiB (48.3 MiB/s) with 2 file(s) remaining
Completed 35.0 MiB/6.4 GiB (48.4 MiB/s) with 2 file(s) remaining
Completed 35.2 MiB/6.4 GiB (48.5 MiB/s) with 2 file(s) remaining
Completed 35.5 MiB/6.4 GiB (48.8 MiB/s) with 2 file(s) remaining
Completed 35.8 MiB/6.4 GiB (48.9 MiB/s) with 2 file(s) remaining
Completed 36.0 MiB/6.4 GiB (48.9 MiB/s) with 2 file(s) remaining
Completed 36.2 MiB/6.4 GiB (48.8 MiB/s) with 2 file(s) remaining
Completed 36.5 MiB/6.4 GiB (49.0 MiB/s) with 2 file(s) remaining
Completed 36.8 MiB/6.4 GiB (49.3 MiB/s) with 2 file(s) remaining
Completed 37.0 MiB/6.4 GiB (49.2 MiB/s) with 2 file(s) remaining
Completed 37.2 MiB/6.4 GiB (49.4 MiB/s) with 2 file(s) remaining
Completed 37.5 MiB/6.4 GiB (49.4 MiB/s) with 2 file(s) remaining
Completed 37.8 MiB/6.4 GiB (49.7 MiB/s) with 2 file(s) remaining
Completed 38.0 MiB/6.4 GiB (49.8 MiB/s) with 2 file(s) remaining
Completed 38.2 MiB/6.4 GiB (50.0 MiB/s) with 2 file(s) remaining
Completed 38.5 MiB/6.4 GiB (50.1 MiB/s) with 2 file(s) remaining
Completed 38.8 MiB/6.4 GiB (50.4 MiB/s) with 2 file(s) remaining
Completed 39.0 MiB/6.4 GiB (50.7 MiB/s) with 2 file(s) remaining
Completed 39.2 MiB/6.4 GiB (50.5 MiB/s) with 2 file(s) remaining
Completed 39.5 MiB/6.4 GiB (50.7 MiB/s) with 2 file(s) remaining
Completed 39.8 MiB/6.4 GiB (50.7 MiB/s) with 2 file(s) remaining
Completed 40.0 MiB/6.4 GiB (50.8 MiB/s) with 2 file(s) remaining
Completed 40.2 MiB/6.4 GiB (51.1 MiB/s) with 2 file(s) remaining
Completed 40.5 MiB/6.4 GiB (51.1 MiB/s) with 2 file(s) remaining
Completed 40.8 MiB/6.4 GiB (51.3 MiB/s) with 2 file(s) remaining
Completed 41.0 MiB/6.4 GiB (51.1 MiB/s) with 2 file(s) remaining
Completed 41.2 MiB/6.4 GiB (51.4 MiB/s) with 2 file(s) remaining
Completed 41.5 MiB/6.4 GiB (51.6 MiB/s) with 2 file(s) remaining
Completed 41.8 MiB/6.4 GiB (51.2 MiB/s) with 2 file(s) remaining
Completed 42.0 MiB/6.4 GiB (51.4 MiB/s) with 2 file(s) remaining
Completed 42.2 MiB/6.4 GiB (51.6 MiB/s) with 2 file(s) remaining
Completed 42.5 MiB/6.4 GiB (51.6 MiB/s) with 2 file(s) remaining
Completed 42.8 MiB/6.4 GiB (51.7 MiB/s) with 2 file(s) remaining
Completed 43.0 MiB/6.4 GiB (52.0 MiB/s) with 2 file(s) remaining
Completed 43.2 MiB/6.4 GiB (52.2 MiB/s) with 2 file(s) remaining
Completed 43.5 MiB/6.4 GiB (52.4 MiB/s) with 2 file(s) remaining
Completed 43.8 MiB/6.4 GiB (52.3 MiB/s) with 2 file(s) remaining
Completed 44.0 MiB/6.4 GiB (52.2 MiB/s) with 2 file(s) remaining
Completed 44.2 MiB/6.4 GiB (52.4 MiB/s) with 2 file(s) remaining
Completed 44.5 MiB/6.4 GiB (52.4 MiB/s) with 2 file(s) remaining
Completed 44.8 MiB/6.4 GiB (52.6 MiB/s) with 2 file(s) remaining
Completed 45.0 MiB/6.4 GiB (52.9 MiB/s) with 2 file(s) remaining
Completed 45.2 MiB/6.4 GiB (52.8 MiB/s) with 2 file(s) remaining
Completed 45.5 MiB/6.4 GiB (53.0 MiB/s) with 2 file(s) remaining
Completed 45.8 MiB/6.4 GiB (53.0 MiB/s) with 2 file(s) remaining
Completed 46.0 MiB/6.4 GiB (52.3 MiB/s) with 2 file(s) remaining
Completed 46.2 MiB/6.4 GiB (52.6 MiB/s) with 2 file(s) remaining
Completed 46.5 MiB/6.4 GiB (52.4 MiB/s) with 2 file(s) remaining
Completed 46.8 MiB/6.4 GiB (52.6 MiB/s) with 2 file(s) remaining
Completed 47.0 MiB/6.4 GiB (52.4 MiB/s) with 2 file(s) remaining
Completed 47.2 MiB/6.4 GiB (52.6 MiB/s) with 2 file(s) remaining
Completed 47.5 MiB/6.4 GiB (52.8 MiB/s) with 2 file(s) remaining
Completed 47.8 MiB/6.4 GiB (53.0 MiB/s) with 2 file(s) remaining
Completed 48.0 MiB/6.4 GiB (52.9 MiB/s) with 2 file(s) remaining
Completed 48.2 MiB/6.4 GiB (53.1 MiB/s) with 2 file(s) remaining
Completed 48.5 MiB/6.4 GiB (52.5 MiB/s) with 2 file(s) remaining
Completed 48.8 MiB/6.4 GiB (52.7 MiB/s) with 2 file(s) remaining
Completed 49.0 MiB/6.4 GiB (52.4 MiB/s) with 2 file(s) remaining
Completed 49.2 MiB/6.4 GiB (52.6 MiB/s) with 2 file(s) remaining
Completed 49.5 MiB/6.4 GiB (52.4 MiB/s) with 2 file(s) remaining
Completed 49.8 MiB/6.4 GiB (52.6 MiB/s) with 2 file(s) remaining
Completed 50.0 MiB/6.4 GiB (52.8 MiB/s) with 2 file(s) remaining
Completed 50.2 MiB/6.4 GiB (52.8 MiB/s) with 2 file(s) remaining
Completed 50.5 MiB/6.4 GiB (53.0 MiB/s) with 2 file(s) remaining
Completed 50.8 MiB/6.4 GiB (52.9 MiB/s) with 2 file(s) remaining
Completed 51.0 MiB/6.4 GiB (52.8 MiB/s) with 2 file(s) remaining
Completed 51.2 MiB/6.4 GiB (53.0 MiB/s) with 2 file(s) remaining
Completed 51.5 MiB/6.4 GiB (52.8 MiB/s) with 2 file(s) remaining
Completed 51.8 MiB/6.4 GiB (52.9 MiB/s) with 2 file(s) remaining
Completed 52.0 MiB/6.4 GiB (53.1 MiB/s) with 2 file(s) remaining
Completed 52.2 MiB/6.4 GiB (53.2 MiB/s) with 2 file(s) remaining
Completed 52.5 MiB/6.4 GiB (53.4 MiB/s) with 2 file(s) remaining
Completed 52.8 MiB/6.4 GiB (53.5 MiB/s) with 2 file(s) remaining
Completed 53.0 MiB/6.4 GiB (53.5 MiB/s) with 2 file(s) remaining
Completed 53.2 MiB/6.4 GiB (53.7 MiB/s) with 2 file(s) remaining
Completed 53.5 MiB/6.4 GiB (53.7 MiB/s) with 2 file(s) remaining
Completed 53.8 MiB/6.4 GiB (53.9 MiB/s) with 2 file(s) remaining
Completed 54.0 MiB/6.4 GiB (54.0 MiB/s) with 2 file(s) remaining
Completed 54.2 MiB/6.4 GiB (54.1 MiB/s) with 2 file(s) remaining
Completed 54.5 MiB/6.4 GiB (53.8 MiB/s) with 2 file(s) remaining
Completed 54.8 MiB/6.4 GiB (54.1 MiB/s) with 2 file(s) remaining
Completed 55.0 MiB/6.4 GiB (54.2 MiB/s) with 2 file(s) remaining
Completed 55.2 MiB/6.4 GiB (54.4 MiB/s) with 2 file(s) remaining
Completed 55.5 MiB/6.4 GiB (54.5 MiB/s) with 2 file(s) remaining
Completed 55.8 MiB/6.4 GiB (54.6 MiB/s) with 2 file(s) remaining
Completed 56.0 MiB/6.4 GiB (54.7 MiB/s) with 2 file(s) remaining
Completed 56.2 MiB/6.4 GiB (54.8 MiB/s) with 2 file(s) remaining
Completed 56.5 MiB/6.4 GiB (55.0 MiB/s) with 2 file(s) remaining
Completed 56.8 MiB/6.4 GiB (54.8 MiB/s) with 2 file(s) remaining
Completed 57.0 MiB/6.4 GiB (54.6 MiB/s) with 2 file(s) remaining
Completed 57.2 MiB/6.4 GiB (54.8 MiB/s) with 2 file(s) remaining
Completed 57.5 MiB/6.4 GiB (54.8 MiB/s) with 2 file(s) remaining
Completed 57.8 MiB/6.4 GiB (55.1 MiB/s) with 2 file(s) remaining
Completed 58.0 MiB/6.4 GiB (55.3 MiB/s) with 2 file(s) remaining
Completed 58.2 MiB/6.4 GiB (55.1 MiB/s) with 2 file(s) remaining
Completed 58.5 MiB/6.4 GiB (54.5 MiB/s) with 2 file(s) remaining
Completed 58.8 MiB/6.4 GiB (54.7 MiB/s) with 2 file(s) remaining
Completed 59.0 MiB/6.4 GiB (54.7 MiB/s) with 2 file(s) remaining
Completed 59.2 MiB/6.4 GiB (54.9 MiB/s) with 2 file(s) remaining
Completed 59.5 MiB/6.4 GiB (55.1 MiB/s) with 2 file(s) remaining
Completed 59.8 MiB/6.4 GiB (55.2 MiB/s) with 2 file(s) remaining
Completed 60.0 MiB/6.4 GiB (55.4 MiB/s) with 2 file(s) remaining
Completed 60.2 MiB/6.4 GiB (55.3 MiB/s) with 2 file(s) remaining
Completed 60.5 MiB/6.4 GiB (55.3 MiB/s) with 2 file(s) remaining
Completed 60.8 MiB/6.4 GiB (55.4 MiB/s) with 2 file(s) remaining
Completed 61.0 MiB/6.4 GiB (55.3 MiB/s) with 2 file(s) remaining
Completed 61.2 MiB/6.4 GiB (55.2 MiB/s) with 2 file(s) remaining
Completed 61.5 MiB/6.4 GiB (55.3 MiB/s) with 2 file(s) remaining
Completed 61.8 MiB/6.4 GiB (55.3 MiB/s) with 2 file(s) remaining
Completed 62.0 MiB/6.4 GiB (55.4 MiB/s) with 2 file(s) remaining
Completed 62.2 MiB/6.4 GiB (55.6 MiB/s) with 2 file(s) remaining
Completed 62.5 MiB/6.4 GiB (55.6 MiB/s) with 2 file(s) remaining
Completed 62.8 MiB/6.4 GiB (55.7 MiB/s) with 2 file(s) remaining
Completed 63.0 MiB/6.4 GiB (55.9 MiB/s) with 2 file(s) remaining
Completed 63.2 MiB/6.4 GiB (56.1 MiB/s) with 2 file(s) remaining
Completed 63.5 MiB/6.4 GiB (56.2 MiB/s) with 2 file(s) remaining
Completed 63.8 MiB/6.4 GiB (56.3 MiB/s) with 2 file(s) remaining
Completed 64.0 MiB/6.4 GiB (56.1 MiB/s) with 2 file(s) remaining
Completed 64.2 MiB/6.4 GiB (55.9 MiB/s) with 2 file(s) remaining
Completed 64.5 MiB/6.4 GiB (56.1 MiB/s) with 2 file(s) remaining
Completed 64.8 MiB/6.4 GiB (56.1 MiB/s) with 2 file(s) remaining
Completed 65.0 MiB/6.4 GiB (56.3 MiB/s) with 2 file(s) remaining
Completed 65.2 MiB/6.4 GiB (56.4 MiB/s) with 2 file(s) remaining
Completed 65.5 MiB/6.4 GiB (56.3 MiB/s) with 2 file(s) remaining
Completed 65.8 MiB/6.4 GiB (56.4 MiB/s) with 2 file(s) remaining
Completed 66.0 MiB/6.4 GiB (56.1 MiB/s) with 2 file(s) remaining
Completed 66.2 MiB/6.4 GiB (56.2 MiB/s) with 2 file(s) remaining
Completed 66.5 MiB/6.4 GiB (56.4 MiB/s) with 2 file(s) remaining
Completed 66.8 MiB/6.4 GiB (56.3 MiB/s) with 2 file(s) remaining
Completed 67.0 MiB/6.4 GiB (56.0 MiB/s) with 2 file(s) remaining
Completed 67.2 MiB/6.4 GiB (56.2 MiB/s) with 2 file(s) remaining
Completed 67.5 MiB/6.4 GiB (55.9 MiB/s) with 2 file(s) remaining
Completed 67.8 MiB/6.4 GiB (56.0 MiB/s) with 2 file(s) remaining
Completed 68.0 MiB/6.4 GiB (55.7 MiB/s) with 2 file(s) remaining
Completed 68.2 MiB/6.4 GiB (55.8 MiB/s) with 2 file(s) remaining
Completed 68.5 MiB/6.4 GiB (55.9 MiB/s) with 2 file(s) remaining
Completed 68.8 MiB/6.4 GiB (56.1 MiB/s) with 2 file(s) remaining
Completed 69.0 MiB/6.4 GiB (56.3 MiB/s) with 2 file(s) remaining
Completed 69.2 MiB/6.4 GiB (55.9 MiB/s) with 2 file(s) remaining
Completed 69.5 MiB/6.4 GiB (55.7 MiB/s) with 2 file(s) remaining
Completed 69.8 MiB/6.4 GiB (55.5 MiB/s) with 2 file(s) remaining
Completed 70.0 MiB/6.4 GiB (55.7 MiB/s) with 2 file(s) remaining
Completed 70.2 MiB/6.4 GiB (55.8 MiB/s) with 2 file(s) remaining
Completed 70.5 MiB/6.4 GiB (55.9 MiB/s) with 2 file(s) remaining
Completed 70.8 MiB/6.4 GiB (55.9 MiB/s) with 2 file(s) remaining
Completed 71.0 MiB/6.4 GiB (55.9 MiB/s) with 2 file(s) remaining
Completed 71.2 MiB/6.4 GiB (55.8 MiB/s) with 2 file(s) remaining
Completed 71.5 MiB/6.4 GiB (55.7 MiB/s) with 2 file(s) remaining
Completed 71.8 MiB/6.4 GiB (55.8 MiB/s) with 2 file(s) remaining
Completed 72.0 MiB/6.4 GiB (55.7 MiB/s) with 2 file(s) remaining
Completed 72.2 MiB/6.4 GiB (55.9 MiB/s) with 2 file(s) remaining
Completed 72.5 MiB/6.4 GiB (55.5 MiB/s) with 2 file(s) remaining
Completed 72.8 MiB/6.4 GiB (55.4 MiB/s) with 2 file(s) remaining
Completed 73.0 MiB/6.4 GiB (55.3 MiB/s) with 2 file(s) remaining
Completed 73.2 MiB/6.4 GiB (55.5 MiB/s) with 2 file(s) remaining
Completed 73.5 MiB/6.4 GiB (55.5 MiB/s) with 2 file(s) remaining
Completed 73.8 MiB/6.4 GiB (55.7 MiB/s) with 2 file(s) remaining
Completed 74.0 MiB/6.4 GiB (55.8 MiB/s) with 2 file(s) remaining
Completed 74.2 MiB/6.4 GiB (55.9 MiB/s) with 2 file(s) remaining
Completed 74.5 MiB/6.4 GiB (55.7 MiB/s) with 2 file(s) remaining
Completed 74.8 MiB/6.4 GiB (55.6 MiB/s) with 2 file(s) remaining
Completed 75.0 MiB/6.4 GiB (55.5 MiB/s) with 2 file(s) remaining
Completed 75.2 MiB/6.4 GiB (55.6 MiB/s) with 2 file(s) remaining
Completed 75.5 MiB/6.4 GiB (55.6 MiB/s) with 2 file(s) remaining
Completed 75.8 MiB/6.4 GiB (55.8 MiB/s) with 2 file(s) remaining
Completed 76.0 MiB/6.4 GiB (55.8 MiB/s) with 2 file(s) remaining
Completed 76.2 MiB/6.4 GiB (55.8 MiB/s) with 2 file(s) remaining
Completed 76.5 MiB/6.4 GiB (55.9 MiB/s) with 2 file(s) remaining
Completed 76.8 MiB/6.4 GiB (56.0 MiB/s) with 2 file(s) remaining
Completed 77.0 MiB/6.4 GiB (56.0 MiB/s) with 2 file(s) remaining
Completed 77.2 MiB/6.4 GiB (56.0 MiB/s) with 2 file(s) remaining
Completed 77.5 MiB/6.4 GiB (56.1 MiB/s) with 2 file(s) remaining
Completed 77.8 MiB/6.4 GiB (56.3 MiB/s) with 2 file(s) remaining
Completed 78.0 MiB/6.4 GiB (56.3 MiB/s) with 2 file(s) remaining
Completed 78.2 MiB/6.4 GiB (56.2 MiB/s) with 2 file(s) remaining
Completed 78.5 MiB/6.4 GiB (56.1 MiB/s) with 2 file(s) remaining
Completed 78.8 MiB/6.4 GiB (55.9 MiB/s) with 2 file(s) remaining
Completed 79.0 MiB/6.4 GiB (56.1 MiB/s) with 2 file(s) remaining
Completed 79.2 MiB/6.4 GiB (56.2 MiB/s) with 2 file(s) remaining
Completed 79.5 MiB/6.4 GiB (56.3 MiB/s) with 2 file(s) remaining
Completed 79.8 MiB/6.4 GiB (56.4 MiB/s) with 2 file(s) remaining
Completed 80.0 MiB/6.4 GiB (56.3 MiB/s) with 2 file(s) remaining
Completed 80.2 MiB/6.4 GiB (56.3 MiB/s) with 2 file(s) remaining
Completed 80.5 MiB/6.4 GiB (56.5 MiB/s) with 2 file(s) remaining
Completed 80.8 MiB/6.4 GiB (56.6 MiB/s) with 2 file(s) remaining
Completed 81.0 MiB/6.4 GiB (56.5 MiB/s) with 2 file(s) remaining
Completed 81.2 MiB/6.4 GiB (56.5 MiB/s) with 2 file(s) remaining
Completed 81.5 MiB/6.4 GiB (56.5 MiB/s) with 2 file(s) remaining
Completed 81.8 MiB/6.4 GiB (56.6 MiB/s) with 2 file(s) remaining
Completed 82.0 MiB/6.4 GiB (56.6 MiB/s) with 2 file(s) remaining
Completed 82.2 MiB/6.4 GiB (56.6 MiB/s) with 2 file(s) remaining
Completed 82.5 MiB/6.4 GiB (56.7 MiB/s) with 2 file(s) remaining
Completed 82.8 MiB/6.4 GiB (56.7 MiB/s) with 2 file(s) remaining
Completed 83.0 MiB/6.4 GiB (56.6 MiB/s) with 2 file(s) remaining
Completed 83.2 MiB/6.4 GiB (56.8 MiB/s) with 2 file(s) remaining
Completed 83.5 MiB/6.4 GiB (56.9 MiB/s) with 2 file(s) remaining
Completed 83.8 MiB/6.4 GiB (57.0 MiB/s) with 2 file(s) remaining
Completed 84.0 MiB/6.4 GiB (57.1 MiB/s) with 2 file(s) remaining
Completed 84.2 MiB/6.4 GiB (57.0 MiB/s) with 2 file(s) remaining
Completed 84.5 MiB/6.4 GiB (57.1 MiB/s) with 2 file(s) remaining
Completed 84.8 MiB/6.4 GiB (57.0 MiB/s) with 2 file(s) remaining
Completed 85.0 MiB/6.4 GiB (57.0 MiB/s) with 2 file(s) remaining
Completed 85.2 MiB/6.4 GiB (56.9 MiB/s) with 2 file(s) remaining
Completed 85.5 MiB/6.4 GiB (56.9 MiB/s) with 2 file(s) remaining
Completed 85.8 MiB/6.4 GiB (57.0 MiB/s) with 2 file(s) remaining
Completed 86.0 MiB/6.4 GiB (56.9 MiB/s) with 2 file(s) remaining
Completed 86.2 MiB/6.4 GiB (57.1 MiB/s) with 2 file(s) remaining
Completed 86.5 MiB/6.4 GiB (57.2 MiB/s) with 2 file(s) remaining
Completed 86.8 MiB/6.4 GiB (57.1 MiB/s) with 2 file(s) remaining
Completed 87.0 MiB/6.4 GiB (57.2 MiB/s) with 2 file(s) remaining
Completed 87.2 MiB/6.4 GiB (57.3 MiB/s) with 2 file(s) remaining
Completed 87.5 MiB/6.4 GiB (57.5 MiB/s) with 2 file(s) remaining
Completed 87.8 MiB/6.4 GiB (57.1 MiB/s) with 2 file(s) remaining
Completed 88.0 MiB/6.4 GiB (57.0 MiB/s) with 2 file(s) remaining
Completed 88.2 MiB/6.4 GiB (57.1 MiB/s) with 2 file(s) remaining
Completed 88.5 MiB/6.4 GiB (57.0 MiB/s) with 2 file(s) remaining
Completed 88.8 MiB/6.4 GiB (57.1 MiB/s) with 2 file(s) remaining
Completed 89.0 MiB/6.4 GiB (57.1 MiB/s) with 2 file(s) remaining
Completed 89.2 MiB/6.4 GiB (57.2 MiB/s) with 2 file(s) remaining
Completed 89.5 MiB/6.4 GiB (57.3 MiB/s) with 2 file(s) remaining
Completed 89.8 MiB/6.4 GiB (57.2 MiB/s) with 2 file(s) remaining
Completed 90.0 MiB/6.4 GiB (57.3 MiB/s) with 2 file(s) remaining
Completed 90.2 MiB/6.4 GiB (57.4 MiB/s) with 2 file(s) remaining
Completed 90.5 MiB/6.4 GiB (57.1 MiB/s) with 2 file(s) remaining
Completed 90.8 MiB/6.4 GiB (57.2 MiB/s) with 2 file(s) remaining
Completed 91.0 MiB/6.4 GiB (56.8 MiB/s) with 2 file(s) remaining
Completed 91.2 MiB/6.4 GiB (56.9 MiB/s) with 2 file(s) remaining
Completed 91.5 MiB/6.4 GiB (57.1 MiB/s) with 2 file(s) remaining
Completed 91.8 MiB/6.4 GiB (57.1 MiB/s) with 2 file(s) remaining
Completed 92.0 MiB/6.4 GiB (56.6 MiB/s) with 2 file(s) remaining
Completed 92.2 MiB/6.4 GiB (56.7 MiB/s) with 2 file(s) remaining
Completed 92.5 MiB/6.4 GiB (56.8 MiB/s) with 2 file(s) remaining
Completed 92.8 MiB/6.4 GiB (56.8 MiB/s) with 2 file(s) remaining
Completed 93.0 MiB/6.4 GiB (56.9 MiB/s) with 2 file(s) remaining
Completed 93.2 MiB/6.4 GiB (57.0 MiB/s) with 2 file(s) remaining
Completed 93.5 MiB/6.4 GiB (57.1 MiB/s) with 2 file(s) remaining
Completed 93.8 MiB/6.4 GiB (57.1 MiB/s) with 2 file(s) remaining
Completed 94.0 MiB/6.4 GiB (56.8 MiB/s) with 2 file(s) remaining
Completed 94.2 MiB/6.4 GiB (56.8 MiB/s) with 2 file(s) remaining
Completed 94.5 MiB/6.4 GiB (56.9 MiB/s) with 2 file(s) remaining
Completed 94.8 MiB/6.4 GiB (57.0 MiB/s) with 2 file(s) remaining
Completed 95.0 MiB/6.4 GiB (56.9 MiB/s) with 2 file(s) remaining
Completed 95.2 MiB/6.4 GiB (56.7 MiB/s) with 2 file(s) remaining
Completed 95.5 MiB/6.4 GiB (56.8 MiB/s) with 2 file(s) remaining
Completed 95.8 MiB/6.4 GiB (56.9 MiB/s) with 2 file(s) remaining
Completed 96.0 MiB/6.4 GiB (57.0 MiB/s) with 2 file(s) remaining
Completed 96.2 MiB/6.4 GiB (57.1 MiB/s) with 2 file(s) remaining
Completed 96.5 MiB/6.4 GiB (57.1 MiB/s) with 2 file(s) remaining
Completed 96.8 MiB/6.4 GiB (57.2 MiB/s) with 2 file(s) remaining
Completed 97.0 MiB/6.4 GiB (57.0 MiB/s) with 2 file(s) remaining
Completed 97.2 MiB/6.4 GiB (57.1 MiB/s) with 2 file(s) remaining
Completed 97.5 MiB/6.4 GiB (57.2 MiB/s) with 2 file(s) remaining
Completed 97.8 MiB/6.4 GiB (57.3 MiB/s) with 2 file(s) remaining
Completed 98.0 MiB/6.4 GiB (57.4 MiB/s) with 2 file(s) remaining
Completed 98.2 MiB/6.4 GiB (57.5 MiB/s) with 2 file(s) remaining
Completed 98.5 MiB/6.4 GiB (57.5 MiB/s) with 2 file(s) remaining
Completed 98.8 MiB/6.4 GiB (57.4 MiB/s) with 2 file(s) remaining
Completed 99.0 MiB/6.4 GiB (57.4 MiB/s) with 2 file(s) remaining
Completed 99.2 MiB/6.4 GiB (57.4 MiB/s) with 2 file(s) remaining
Completed 99.5 MiB/6.4 GiB (57.5 MiB/s) with 2 file(s) remaining
Completed 99.8 MiB/6.4 GiB (57.7 MiB/s) with 2 file(s) remaining
Completed 100.0 MiB/6.4 GiB (57.7 MiB/s) with 2 file(s) remaining
Completed 100.2 MiB/6.4 GiB (57.9 MiB/s) with 2 file(s) remaining
Completed 100.5 MiB/6.4 GiB (57.8 MiB/s) with 2 file(s) remaining
Completed 100.8 MiB/6.4 GiB (57.8 MiB/s) with 2 file(s) remaining
Completed 101.0 MiB/6.4 GiB (57.9 MiB/s) with 2 file(s) remaining
Completed 101.2 MiB/6.4 GiB (58.0 MiB/s) with 2 file(s) remaining
Completed 101.5 MiB/6.4 GiB (58.1 MiB/s) with 2 file(s) remaining
Completed 101.8 MiB/6.4 GiB (58.1 MiB/s) with 2 file(s) remaining
Completed 102.0 MiB/6.4 GiB (58.1 MiB/s) with 2 file(s) remaining
Completed 102.2 MiB/6.4 GiB (58.2 MiB/s) with 2 file(s) remaining
Completed 102.5 MiB/6.4 GiB (58.4 MiB/s) with 2 file(s) remaining
Completed 102.8 MiB/6.4 GiB (58.3 MiB/s) with 2 file(s) remaining
Completed 103.0 MiB/6.4 GiB (58.4 MiB/s) with 2 file(s) remaining
Completed 103.2 MiB/6.4 GiB (58.4 MiB/s) with 2 file(s) remaining
Completed 103.5 MiB/6.4 GiB (58.5 MiB/s) with 2 file(s) remaining
Completed 103.8 MiB/6.4 GiB (58.6 MiB/s) with 2 file(s) remaining
Completed 104.0 MiB/6.4 GiB (58.7 MiB/s) with 2 file(s) remaining
Completed 104.2 MiB/6.4 GiB (58.8 MiB/s) with 2 file(s) remaining
Completed 104.5 MiB/6.4 GiB (58.7 MiB/s) with 2 file(s) remaining
Completed 104.8 MiB/6.4 GiB (58.6 MiB/s) with 2 file(s) remaining
Completed 105.0 MiB/6.4 GiB (58.7 MiB/s) with 2 file(s) remaining
Completed 105.2 MiB/6.4 GiB (58.8 MiB/s) with 2 file(s) remaining
Completed 105.5 MiB/6.4 GiB (58.9 MiB/s) with 2 file(s) remaining
Completed 105.8 MiB/6.4 GiB (59.0 MiB/s) with 2 file(s) remaining
Completed 106.0 MiB/6.4 GiB (58.8 MiB/s) with 2 file(s) remaining
Completed 106.2 MiB/6.4 GiB (58.9 MiB/s) with 2 file(s) remaining
Completed 106.5 MiB/6.4 GiB (59.0 MiB/s) with 2 file(s) remaining
Completed 106.8 MiB/6.4 GiB (59.0 MiB/s) with 2 file(s) remaining
Completed 107.0 MiB/6.4 GiB (59.0 MiB/s) with 2 file(s) remaining
Completed 107.2 MiB/6.4 GiB (59.1 MiB/s) with 2 file(s) remaining
Completed 107.5 MiB/6.4 GiB (59.2 MiB/s) with 2 file(s) remaining
Completed 107.8 MiB/6.4 GiB (58.9 MiB/s) with 2 file(s) remaining
Completed 108.0 MiB/6.4 GiB (59.0 MiB/s) with 2 file(s) remaining
Completed 108.2 MiB/6.4 GiB (58.9 MiB/s) with 2 file(s) remaining
Completed 108.5 MiB/6.4 GiB (59.0 MiB/s) with 2 file(s) remaining
Completed 108.8 MiB/6.4 GiB (59.1 MiB/s) with 2 file(s) remaining
Completed 109.0 MiB/6.4 GiB (59.2 MiB/s) with 2 file(s) remaining
Completed 109.2 MiB/6.4 GiB (59.3 MiB/s) with 2 file(s) remaining
Completed 109.5 MiB/6.4 GiB (59.2 MiB/s) with 2 file(s) remaining
Completed 109.8 MiB/6.4 GiB (59.3 MiB/s) with 2 file(s) remaining
Completed 110.0 MiB/6.4 GiB (59.4 MiB/s) with 2 file(s) remaining
Completed 110.2 MiB/6.4 GiB (59.3 MiB/s) with 2 file(s) remaining
Completed 110.5 MiB/6.4 GiB (59.5 MiB/s) with 2 file(s) remaining
Completed 110.8 MiB/6.4 GiB (59.5 MiB/s) with 2 file(s) remaining
Completed 111.0 MiB/6.4 GiB (59.5 MiB/s) with 2 file(s) remaining
Completed 111.2 MiB/6.4 GiB (59.6 MiB/s) with 2 file(s) remaining
Completed 111.5 MiB/6.4 GiB (59.7 MiB/s) with 2 file(s) remaining
Completed 111.8 MiB/6.4 GiB (59.7 MiB/s) with 2 file(s) remaining
Completed 112.0 MiB/6.4 GiB (59.6 MiB/s) with 2 file(s) remaining
Completed 112.2 MiB/6.4 GiB (59.6 MiB/s) with 2 file(s) remaining
Completed 112.5 MiB/6.4 GiB (59.6 MiB/s) with 2 file(s) remaining
Completed 112.8 MiB/6.4 GiB (59.6 MiB/s) with 2 file(s) remaining
Completed 113.0 MiB/6.4 GiB (59.6 MiB/s) with 2 file(s) remaining
Completed 113.2 MiB/6.4 GiB (59.7 MiB/s) with 2 file(s) remaining
Completed 113.5 MiB/6.4 GiB (59.8 MiB/s) with 2 file(s) remaining
Completed 113.8 MiB/6.4 GiB (59.8 MiB/s) with 2 file(s) remaining
Completed 114.0 MiB/6.4 GiB (59.8 MiB/s) with 2 file(s) remaining
Completed 114.2 MiB/6.4 GiB (59.9 MiB/s) with 2 file(s) remaining
Completed 114.5 MiB/6.4 GiB (59.9 MiB/s) with 2 file(s) remaining
Completed 114.8 MiB/6.4 GiB (59.8 MiB/s) with 2 file(s) remaining
Completed 115.0 MiB/6.4 GiB (59.7 MiB/s) with 2 file(s) remaining
Completed 115.2 MiB/6.4 GiB (59.8 MiB/s) with 2 file(s) remaining
Completed 115.5 MiB/6.4 GiB (59.8 MiB/s) with 2 file(s) remaining
Completed 115.8 MiB/6.4 GiB (59.5 MiB/s) with 2 file(s) remaining
Completed 116.0 MiB/6.4 GiB (59.7 MiB/s) with 2 file(s) remaining
Completed 116.2 MiB/6.4 GiB (59.7 MiB/s) with 2 file(s) remaining
Completed 116.5 MiB/6.4 GiB (59.8 MiB/s) with 2 file(s) remaining
Completed 116.8 MiB/6.4 GiB (59.8 MiB/s) with 2 file(s) remaining
Completed 117.0 MiB/6.4 GiB (59.7 MiB/s) with 2 file(s) remaining
Completed 117.2 MiB/6.4 GiB (59.6 MiB/s) with 2 file(s) remaining
Completed 117.5 MiB/6.4 GiB (59.7 MiB/s) with 2 file(s) remaining
Completed 117.8 MiB/6.4 GiB (59.7 MiB/s) with 2 file(s) remaining
Completed 118.0 MiB/6.4 GiB (59.7 MiB/s) with 2 file(s) remaining
Completed 118.2 MiB/6.4 GiB (59.8 MiB/s) with 2 file(s) remaining
Completed 118.5 MiB/6.4 GiB (59.6 MiB/s) with 2 file(s) remaining
Completed 118.8 MiB/6.4 GiB (59.6 MiB/s) with 2 file(s) remaining
Completed 119.0 MiB/6.4 GiB (59.7 MiB/s) with 2 file(s) remaining
Completed 119.2 MiB/6.4 GiB (59.7 MiB/s) with 2 file(s) remaining
Completed 119.5 MiB/6.4 GiB (59.8 MiB/s) with 2 file(s) remaining
Completed 119.8 MiB/6.4 GiB (59.8 MiB/s) with 2 file(s) remaining
Completed 120.0 MiB/6.4 GiB (59.9 MiB/s) with 2 file(s) remaining
Completed 120.2 MiB/6.4 GiB (59.9 MiB/s) with 2 file(s) remaining
Completed 120.5 MiB/6.4 GiB (59.8 MiB/s) with 2 file(s) remaining
Completed 120.8 MiB/6.4 GiB (59.8 MiB/s) with 2 file(s) remaining
Completed 121.0 MiB/6.4 GiB (59.9 MiB/s) with 2 file(s) remaining
Completed 121.2 MiB/6.4 GiB (59.9 MiB/s) with 2 file(s) remaining
Completed 121.5 MiB/6.4 GiB (59.7 MiB/s) with 2 file(s) remaining
Completed 121.8 MiB/6.4 GiB (59.8 MiB/s) with 2 file(s) remaining
Completed 122.0 MiB/6.4 GiB (59.8 MiB/s) with 2 file(s) remaining
Completed 122.2 MiB/6.4 GiB (59.8 MiB/s) with 2 file(s) remaining
Completed 122.5 MiB/6.4 GiB (59.9 MiB/s) with 2 file(s) remaining
Completed 122.8 MiB/6.4 GiB (59.9 MiB/s) with 2 file(s) remaining
Completed 123.0 MiB/6.4 GiB (60.0 MiB/s) with 2 file(s) remaining
Completed 123.2 MiB/6.4 GiB (60.0 MiB/s) with 2 file(s) remaining
Completed 123.5 MiB/6.4 GiB (59.9 MiB/s) with 2 file(s) remaining
Completed 123.8 MiB/6.4 GiB (60.0 MiB/s) with 2 file(s) remaining
Completed 124.0 MiB/6.4 GiB (60.0 MiB/s) with 2 file(s) remaining
Completed 124.2 MiB/6.4 GiB (60.1 MiB/s) with 2 file(s) remaining
Completed 124.5 MiB/6.4 GiB (60.1 MiB/s) with 2 file(s) remaining
Completed 124.8 MiB/6.4 GiB (60.2 MiB/s) with 2 file(s) remaining
Completed 125.0 MiB/6.4 GiB (60.3 MiB/s) with 2 file(s) remaining
Completed 125.2 MiB/6.4 GiB (60.3 MiB/s) with 2 file(s) remaining
Completed 125.5 MiB/6.4 GiB (60.4 MiB/s) with 2 file(s) remaining
Completed 125.8 MiB/6.4 GiB (60.4 MiB/s) with 2 file(s) remaining
Completed 126.0 MiB/6.4 GiB (60.5 MiB/s) with 2 file(s) remaining
Completed 126.2 MiB/6.4 GiB (60.5 MiB/s) with 2 file(s) remaining
Completed 126.5 MiB/6.4 GiB (60.2 MiB/s) with 2 file(s) remaining
Completed 126.8 MiB/6.4 GiB (60.4 MiB/s) with 2 file(s) remaining
Completed 127.0 MiB/6.4 GiB (60.4 MiB/s) with 2 file(s) remaining
Completed 127.2 MiB/6.4 GiB (60.5 MiB/s) with 2 file(s) remaining
Completed 127.5 MiB/6.4 GiB (60.5 MiB/s) with 2 file(s) remaining
Completed 127.8 MiB/6.4 GiB (60.5 MiB/s) with 2 file(s) remaining
Completed 128.0 MiB/6.4 GiB (60.5 MiB/s) with 2 file(s) remaining
Completed 128.2 MiB/6.4 GiB (60.6 MiB/s) with 2 file(s) remaining
Completed 128.5 MiB/6.4 GiB (60.7 MiB/s) with 2 file(s) remaining
Completed 128.8 MiB/6.4 GiB (60.7 MiB/s) with 2 file(s) remaining
Completed 129.0 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 129.2 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 129.5 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 129.8 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 130.0 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 130.2 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 130.5 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 130.8 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 131.0 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 131.2 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 131.5 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 131.8 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 132.0 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 132.2 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 132.5 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 132.8 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 133.0 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 133.2 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 133.5 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 133.8 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 134.0 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 134.2 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 134.5 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 134.8 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 135.0 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 135.2 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 135.5 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 135.8 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 136.0 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 136.2 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 136.5 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 136.8 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 137.0 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 137.2 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 137.5 MiB/6.4 GiB (61.4 MiB/s) with 2 file(s) remaining
Completed 137.8 MiB/6.4 GiB (61.4 MiB/s) with 2 file(s) remaining
Completed 138.0 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 138.2 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 138.5 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 138.8 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 139.0 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 139.2 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 139.5 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 139.8 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 140.0 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 140.2 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 140.5 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 140.8 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 141.0 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 141.2 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 141.5 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 141.8 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 142.0 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 142.2 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 142.5 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 142.8 MiB/6.4 GiB (60.6 MiB/s) with 2 file(s) remaining
Completed 143.0 MiB/6.4 GiB (60.5 MiB/s) with 2 file(s) remaining
Completed 143.2 MiB/6.4 GiB (60.6 MiB/s) with 2 file(s) remaining
Completed 143.5 MiB/6.4 GiB (60.7 MiB/s) with 2 file(s) remaining
Completed 143.8 MiB/6.4 GiB (60.4 MiB/s) with 2 file(s) remaining
Completed 144.0 MiB/6.4 GiB (60.3 MiB/s) with 2 file(s) remaining
Completed 144.2 MiB/6.4 GiB (60.3 MiB/s) with 2 file(s) remaining
Completed 144.5 MiB/6.4 GiB (60.4 MiB/s) with 2 file(s) remaining
Completed 144.8 MiB/6.4 GiB (60.4 MiB/s) with 2 file(s) remaining
Completed 145.0 MiB/6.4 GiB (60.5 MiB/s) with 2 file(s) remaining
Completed 145.2 MiB/6.4 GiB (60.3 MiB/s) with 2 file(s) remaining
Completed 145.5 MiB/6.4 GiB (60.4 MiB/s) with 2 file(s) remaining
Completed 145.8 MiB/6.4 GiB (60.5 MiB/s) with 2 file(s) remaining
Completed 146.0 MiB/6.4 GiB (60.5 MiB/s) with 2 file(s) remaining
Completed 146.2 MiB/6.4 GiB (60.5 MiB/s) with 2 file(s) remaining
Completed 146.5 MiB/6.4 GiB (60.5 MiB/s) with 2 file(s) remaining
Completed 146.8 MiB/6.4 GiB (60.4 MiB/s) with 2 file(s) remaining
Completed 147.0 MiB/6.4 GiB (60.3 MiB/s) with 2 file(s) remaining
Completed 147.2 MiB/6.4 GiB (60.4 MiB/s) with 2 file(s) remaining
Completed 147.5 MiB/6.4 GiB (60.4 MiB/s) with 2 file(s) remaining
Completed 147.8 MiB/6.4 GiB (60.4 MiB/s) with 2 file(s) remaining
Completed 148.0 MiB/6.4 GiB (60.4 MiB/s) with 2 file(s) remaining
Completed 148.2 MiB/6.4 GiB (60.3 MiB/s) with 2 file(s) remaining
Completed 148.5 MiB/6.4 GiB (60.3 MiB/s) with 2 file(s) remaining
Completed 148.8 MiB/6.4 GiB (60.3 MiB/s) with 2 file(s) remaining
Completed 149.0 MiB/6.4 GiB (60.4 MiB/s) with 2 file(s) remaining
Completed 149.2 MiB/6.4 GiB (60.2 MiB/s) with 2 file(s) remaining
Completed 149.5 MiB/6.4 GiB (60.2 MiB/s) with 2 file(s) remaining
Completed 149.8 MiB/6.4 GiB (60.2 MiB/s) with 2 file(s) remaining
Completed 150.0 MiB/6.4 GiB (60.3 MiB/s) with 2 file(s) remaining
Completed 150.2 MiB/6.4 GiB (60.4 MiB/s) with 2 file(s) remaining
Completed 150.5 MiB/6.4 GiB (60.2 MiB/s) with 2 file(s) remaining
Completed 150.8 MiB/6.4 GiB (60.2 MiB/s) with 2 file(s) remaining
Completed 151.0 MiB/6.4 GiB (60.3 MiB/s) with 2 file(s) remaining
Completed 151.2 MiB/6.4 GiB (60.4 MiB/s) with 2 file(s) remaining
Completed 151.5 MiB/6.4 GiB (60.4 MiB/s) with 2 file(s) remaining
Completed 151.8 MiB/6.4 GiB (60.4 MiB/s) with 2 file(s) remaining
Completed 152.0 MiB/6.4 GiB (60.4 MiB/s) with 2 file(s) remaining
Completed 152.2 MiB/6.4 GiB (60.5 MiB/s) with 2 file(s) remaining
Completed 152.5 MiB/6.4 GiB (60.5 MiB/s) with 2 file(s) remaining
Completed 152.8 MiB/6.4 GiB (60.5 MiB/s) with 2 file(s) remaining
Completed 153.0 MiB/6.4 GiB (60.6 MiB/s) with 2 file(s) remaining
Completed 153.2 MiB/6.4 GiB (60.6 MiB/s) with 2 file(s) remaining
Completed 153.5 MiB/6.4 GiB (60.7 MiB/s) with 2 file(s) remaining
Completed 153.8 MiB/6.4 GiB (60.7 MiB/s) with 2 file(s) remaining
Completed 154.0 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 154.2 MiB/6.4 GiB (60.7 MiB/s) with 2 file(s) remaining
Completed 154.5 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 154.8 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 155.0 MiB/6.4 GiB (60.7 MiB/s) with 2 file(s) remaining
Completed 155.2 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 155.5 MiB/6.4 GiB (60.7 MiB/s) with 2 file(s) remaining
Completed 155.8 MiB/6.4 GiB (60.7 MiB/s) with 2 file(s) remaining
Completed 156.0 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 156.2 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 156.5 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 156.8 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 157.0 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 157.2 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 157.5 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 157.8 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 158.0 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 158.2 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 158.5 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 158.8 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 159.0 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 159.2 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 159.5 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 159.8 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 160.0 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 160.2 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 160.5 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 160.8 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 161.0 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 161.2 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 161.5 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 161.8 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 162.0 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 162.2 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 162.5 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 162.8 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 163.0 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 163.2 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 163.5 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 163.8 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 164.0 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 164.2 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 164.5 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 164.8 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 165.0 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 165.2 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 165.5 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 165.8 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 166.0 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 166.2 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 166.5 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 166.8 MiB/6.4 GiB (60.7 MiB/s) with 2 file(s) remaining
Completed 167.0 MiB/6.4 GiB (60.7 MiB/s) with 2 file(s) remaining
Completed 167.2 MiB/6.4 GiB (60.6 MiB/s) with 2 file(s) remaining
Completed 167.5 MiB/6.4 GiB (60.7 MiB/s) with 2 file(s) remaining
Completed 167.8 MiB/6.4 GiB (60.7 MiB/s) with 2 file(s) remaining
Completed 168.0 MiB/6.4 GiB (60.7 MiB/s) with 2 file(s) remaining
Completed 168.2 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 168.5 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 168.8 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 169.0 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 169.2 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 169.5 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 169.8 MiB/6.4 GiB (60.7 MiB/s) with 2 file(s) remaining
Completed 170.0 MiB/6.4 GiB (60.7 MiB/s) with 2 file(s) remaining
Completed 170.2 MiB/6.4 GiB (60.6 MiB/s) with 2 file(s) remaining
Completed 170.5 MiB/6.4 GiB (60.7 MiB/s) with 2 file(s) remaining
Completed 170.8 MiB/6.4 GiB (60.7 MiB/s) with 2 file(s) remaining
Completed 171.0 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 171.2 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 171.5 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 171.8 MiB/6.4 GiB (60.7 MiB/s) with 2 file(s) remaining
Completed 172.0 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 172.2 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 172.5 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 172.8 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 173.0 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 173.2 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 173.5 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 173.8 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 174.0 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 174.2 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 174.5 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 174.8 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 175.0 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 175.2 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 175.5 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 175.8 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 176.0 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 176.2 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 176.5 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 176.8 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 177.0 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 177.2 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 177.5 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 177.8 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 178.0 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 178.2 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 178.5 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 178.8 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 179.0 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 179.2 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 179.5 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 179.8 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 180.0 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 180.2 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 180.5 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 180.8 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 181.0 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 181.2 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 181.5 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 181.8 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 182.0 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 182.2 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 182.5 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 182.8 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 183.0 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 183.2 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 183.5 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 183.8 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 184.0 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 184.2 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 184.5 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 184.8 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 185.0 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 185.2 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 185.5 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 185.8 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 186.0 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 186.2 MiB/6.4 GiB (61.4 MiB/s) with 2 file(s) remaining
Completed 186.5 MiB/6.4 GiB (61.4 MiB/s) with 2 file(s) remaining
Completed 186.8 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 187.0 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 187.2 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 187.5 MiB/6.4 GiB (61.4 MiB/s) with 2 file(s) remaining
Completed 187.8 MiB/6.4 GiB (61.4 MiB/s) with 2 file(s) remaining
Completed 188.0 MiB/6.4 GiB (61.4 MiB/s) with 2 file(s) remaining
Completed 188.2 MiB/6.4 GiB (61.4 MiB/s) with 2 file(s) remaining
Completed 188.5 MiB/6.4 GiB (61.4 MiB/s) with 2 file(s) remaining
Completed 188.8 MiB/6.4 GiB (61.4 MiB/s) with 2 file(s) remaining
Completed 189.0 MiB/6.4 GiB (61.5 MiB/s) with 2 file(s) remaining
Completed 189.2 MiB/6.4 GiB (61.5 MiB/s) with 2 file(s) remaining
Completed 189.5 MiB/6.4 GiB (61.5 MiB/s) with 2 file(s) remaining
Completed 189.8 MiB/6.4 GiB (61.4 MiB/s) with 2 file(s) remaining
Completed 190.0 MiB/6.4 GiB (61.4 MiB/s) with 2 file(s) remaining
Completed 190.2 MiB/6.4 GiB (61.4 MiB/s) with 2 file(s) remaining
Completed 190.5 MiB/6.4 GiB (61.4 MiB/s) with 2 file(s) remaining
Completed 190.8 MiB/6.4 GiB (61.5 MiB/s) with 2 file(s) remaining
Completed 191.0 MiB/6.4 GiB (61.4 MiB/s) with 2 file(s) remaining
Completed 191.2 MiB/6.4 GiB (61.4 MiB/s) with 2 file(s) remaining
Completed 191.5 MiB/6.4 GiB (61.5 MiB/s) with 2 file(s) remaining
Completed 191.8 MiB/6.4 GiB (61.4 MiB/s) with 2 file(s) remaining
Completed 192.0 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 192.2 MiB/6.4 GiB (61.4 MiB/s) with 2 file(s) remaining
Completed 192.5 MiB/6.4 GiB (61.4 MiB/s) with 2 file(s) remaining
Completed 192.8 MiB/6.4 GiB (61.4 MiB/s) with 2 file(s) remaining
Completed 193.0 MiB/6.4 GiB (61.4 MiB/s) with 2 file(s) remaining
Completed 193.2 MiB/6.4 GiB (61.4 MiB/s) with 2 file(s) remaining
Completed 193.5 MiB/6.4 GiB (61.4 MiB/s) with 2 file(s) remaining
Completed 193.8 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 194.0 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 194.2 MiB/6.4 GiB (61.4 MiB/s) with 2 file(s) remaining
Completed 194.5 MiB/6.4 GiB (61.4 MiB/s) with 2 file(s) remaining
Completed 194.8 MiB/6.4 GiB (61.5 MiB/s) with 2 file(s) remaining
Completed 195.0 MiB/6.4 GiB (61.4 MiB/s) with 2 file(s) remaining
Completed 195.2 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 195.5 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 195.8 MiB/6.4 GiB (61.4 MiB/s) with 2 file(s) remaining
Completed 196.0 MiB/6.4 GiB (61.4 MiB/s) with 2 file(s) remaining
Completed 196.2 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 196.5 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 196.8 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 197.0 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 197.2 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 197.5 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 197.8 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 198.0 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 198.2 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 198.5 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 198.8 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 199.0 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 199.2 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 199.5 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 199.8 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 200.0 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 200.2 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 200.5 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 200.8 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 201.0 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 201.2 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 201.5 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 201.8 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 202.0 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 202.2 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 202.5 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 202.8 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 203.0 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 203.2 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 203.5 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 203.8 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 204.0 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 204.2 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 204.5 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 204.8 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 205.0 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 205.2 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 205.5 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 205.8 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 206.0 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 206.2 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 206.5 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 206.8 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 207.0 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 207.2 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 207.5 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 207.8 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 208.0 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 208.2 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 208.5 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 208.8 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 209.0 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 209.2 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 209.5 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 209.8 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 210.0 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 210.2 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 210.5 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 210.8 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 211.0 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 211.2 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 211.5 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 211.8 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 212.0 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 212.2 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 212.5 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 212.8 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 213.0 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 213.2 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 213.5 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 213.8 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 214.0 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 214.2 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 214.5 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 214.8 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 215.0 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 215.2 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 215.5 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 215.8 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 216.0 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 216.2 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 216.5 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 216.8 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 217.0 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 217.2 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 217.5 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 217.8 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 218.0 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 218.2 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 218.5 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 218.8 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 219.0 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 219.2 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 219.5 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 219.8 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 220.0 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 220.2 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 220.5 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 220.8 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 221.0 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 221.2 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 221.5 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 221.8 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 222.0 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 222.2 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 222.5 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 222.8 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 223.0 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 223.2 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 223.5 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 223.8 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 224.0 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 224.2 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 224.5 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 224.8 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 225.0 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 225.2 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 225.5 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 225.8 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 226.0 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 226.2 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 226.5 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 226.8 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 227.0 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 227.2 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 227.5 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 227.8 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 228.0 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 228.2 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 228.5 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 228.8 MiB/6.4 GiB (61.4 MiB/s) with 2 file(s) remaining
Completed 229.0 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 229.2 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 229.5 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 229.8 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 230.0 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 230.2 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 230.5 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 230.8 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 231.0 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 231.2 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 231.5 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 231.8 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 232.0 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 232.2 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 232.5 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 232.8 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 233.0 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 233.2 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 233.5 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 233.8 MiB/6.4 GiB (61.4 MiB/s) with 2 file(s) remaining
Completed 234.0 MiB/6.4 GiB (61.4 MiB/s) with 2 file(s) remaining
Completed 234.2 MiB/6.4 GiB (61.4 MiB/s) with 2 file(s) remaining
Completed 234.5 MiB/6.4 GiB (61.4 MiB/s) with 2 file(s) remaining
Completed 234.8 MiB/6.4 GiB (61.4 MiB/s) with 2 file(s) remaining
Completed 235.0 MiB/6.4 GiB (61.5 MiB/s) with 2 file(s) remaining
Completed 235.2 MiB/6.4 GiB (61.5 MiB/s) with 2 file(s) remaining
Completed 235.5 MiB/6.4 GiB (61.5 MiB/s) with 2 file(s) remaining
Completed 235.8 MiB/6.4 GiB (61.5 MiB/s) with 2 file(s) remaining
Completed 236.0 MiB/6.4 GiB (61.5 MiB/s) with 2 file(s) remaining
Completed 236.2 MiB/6.4 GiB (61.4 MiB/s) with 2 file(s) remaining
Completed 236.5 MiB/6.4 GiB (61.5 MiB/s) with 2 file(s) remaining
Completed 236.8 MiB/6.4 GiB (61.5 MiB/s) with 2 file(s) remaining
Completed 237.0 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 237.2 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 237.5 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 237.8 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 238.0 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 238.2 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 238.5 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 238.8 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 239.0 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 239.2 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 239.5 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 239.8 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 240.0 MiB/6.4 GiB (61.4 MiB/s) with 2 file(s) remaining
Completed 240.2 MiB/6.4 GiB (61.4 MiB/s) with 2 file(s) remaining
Completed 240.5 MiB/6.4 GiB (61.4 MiB/s) with 2 file(s) remaining
Completed 240.8 MiB/6.4 GiB (61.5 MiB/s) with 2 file(s) remaining
Completed 241.0 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 241.2 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 241.5 MiB/6.4 GiB (61.4 MiB/s) with 2 file(s) remaining
Completed 241.8 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 242.0 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 242.2 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 242.5 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 242.8 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 243.0 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 243.2 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 243.5 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 243.8 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 244.0 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 244.2 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 244.5 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 244.8 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 245.0 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 245.2 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 245.5 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 245.8 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 246.0 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 246.2 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 246.5 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 246.8 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 247.0 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 247.2 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 247.5 MiB/6.4 GiB (61.4 MiB/s) with 2 file(s) remaining
Completed 247.8 MiB/6.4 GiB (61.4 MiB/s) with 2 file(s) remaining
Completed 248.0 MiB/6.4 GiB (61.4 MiB/s) with 2 file(s) remaining
Completed 248.2 MiB/6.4 GiB (61.4 MiB/s) with 2 file(s) remaining
Completed 248.5 MiB/6.4 GiB (61.4 MiB/s) with 2 file(s) remaining
Completed 248.8 MiB/6.4 GiB (61.4 MiB/s) with 2 file(s) remaining
Completed 249.0 MiB/6.4 GiB (61.4 MiB/s) with 2 file(s) remaining
Completed 249.2 MiB/6.4 GiB (61.5 MiB/s) with 2 file(s) remaining
Completed 249.5 MiB/6.4 GiB (61.4 MiB/s) with 2 file(s) remaining
Completed 249.8 MiB/6.4 GiB (61.4 MiB/s) with 2 file(s) remaining
Completed 250.0 MiB/6.4 GiB (61.4 MiB/s) with 2 file(s) remaining
Completed 250.2 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 250.5 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 250.8 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 251.0 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 251.2 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 251.5 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 251.8 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 252.0 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 252.2 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 252.5 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 252.8 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 253.0 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 253.2 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 253.5 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 253.8 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 254.0 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 254.2 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 254.5 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 254.8 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 255.0 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 255.2 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 255.5 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 255.8 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 256.0 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 256.2 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 256.5 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 256.8 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 257.0 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 257.2 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 257.5 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 257.8 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 258.0 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 258.2 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 258.5 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 258.8 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 259.0 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 259.2 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 259.5 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 259.8 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 260.0 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 260.2 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 260.5 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 260.8 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 261.0 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 261.2 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 261.5 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 261.8 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 262.0 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 262.2 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 262.5 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 262.8 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 263.0 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 263.2 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 263.5 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 263.8 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 264.0 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 264.2 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 264.5 MiB/6.4 GiB (60.7 MiB/s) with 2 file(s) remaining
Completed 264.8 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 265.0 MiB/6.4 GiB (60.7 MiB/s) with 2 file(s) remaining
Completed 265.2 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 265.5 MiB/6.4 GiB (60.7 MiB/s) with 2 file(s) remaining
Completed 265.8 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 266.0 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 266.2 MiB/6.4 GiB (60.7 MiB/s) with 2 file(s) remaining
Completed 266.5 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 266.8 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 267.0 MiB/6.4 GiB (60.7 MiB/s) with 2 file(s) remaining
Completed 267.2 MiB/6.4 GiB (60.7 MiB/s) with 2 file(s) remaining
Completed 267.5 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 267.8 MiB/6.4 GiB (60.7 MiB/s) with 2 file(s) remaining
Completed 268.0 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 268.2 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 268.5 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 268.8 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 269.0 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 269.2 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 269.5 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 269.8 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 270.0 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 270.2 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 270.5 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 270.8 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 271.0 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 271.2 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 271.5 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 271.8 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 272.0 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 272.2 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 272.5 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 272.8 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 273.0 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 273.2 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 273.5 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 273.8 MiB/6.4 GiB (60.7 MiB/s) with 2 file(s) remaining
Completed 274.0 MiB/6.4 GiB (60.6 MiB/s) with 2 file(s) remaining
Completed 274.2 MiB/6.4 GiB (60.7 MiB/s) with 2 file(s) remaining
Completed 274.5 MiB/6.4 GiB (60.7 MiB/s) with 2 file(s) remaining
Completed 274.8 MiB/6.4 GiB (60.7 MiB/s) with 2 file(s) remaining
Completed 275.0 MiB/6.4 GiB (60.7 MiB/s) with 2 file(s) remaining
Completed 275.2 MiB/6.4 GiB (60.7 MiB/s) with 2 file(s) remaining
Completed 275.5 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 275.8 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 276.0 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 276.2 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 276.5 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 276.8 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 277.0 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 277.2 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 277.5 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 277.8 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 278.0 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 278.2 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 278.5 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 278.8 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 279.0 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 279.2 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 279.5 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 279.8 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 280.0 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 280.2 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 280.5 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 280.8 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 281.0 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 281.2 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 281.5 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 281.8 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 282.0 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 282.2 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 282.5 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 282.8 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 283.0 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 283.2 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 283.5 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 283.8 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 284.0 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 284.2 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 284.5 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 284.8 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 285.0 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 285.2 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 285.5 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 285.8 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 286.0 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 286.2 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 286.5 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 286.8 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 287.0 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 287.2 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 287.5 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 287.8 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 288.0 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 288.2 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 288.5 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 288.8 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 289.0 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 289.2 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 289.5 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 289.8 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 290.0 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 290.2 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 290.5 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 290.8 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 291.0 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 291.2 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 291.5 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 291.8 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 292.0 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 292.2 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 292.5 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 292.8 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 293.0 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 293.2 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 293.5 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 293.8 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 294.0 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 294.2 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 294.5 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 294.8 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 295.0 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 295.2 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 295.5 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 295.8 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 296.0 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 296.2 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 296.5 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 296.8 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 297.0 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 297.2 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 297.5 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 297.8 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 298.0 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 298.2 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 298.5 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 298.8 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 299.0 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 299.2 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 299.5 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 299.8 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 300.0 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 300.2 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 300.5 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 300.8 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 301.0 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 301.2 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 301.5 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 301.8 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 302.0 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 302.2 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 302.5 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 302.8 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 303.0 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 303.2 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 303.5 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 303.8 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 304.0 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 304.2 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 304.5 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 304.8 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 305.0 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 305.2 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 305.5 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 305.8 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 306.0 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 306.2 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 306.5 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 306.8 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 307.0 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 307.2 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 307.5 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 307.8 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 308.0 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 308.2 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 308.5 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 308.8 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 309.0 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 309.2 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 309.5 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 309.8 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 310.0 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 310.2 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 310.5 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 310.8 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 311.0 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 311.2 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 311.5 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 311.8 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 312.0 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 312.2 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 312.5 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 312.8 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 313.0 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 313.2 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 313.5 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 313.8 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 314.0 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 314.2 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 314.5 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 314.8 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 315.0 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 315.2 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 315.5 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 315.8 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 316.0 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 316.2 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 316.5 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 316.8 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 317.0 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 317.2 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 317.5 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 317.8 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 318.0 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 318.2 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 318.5 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 318.8 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 319.0 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 319.2 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 319.5 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 319.8 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 320.0 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 320.2 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 320.5 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 320.8 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 321.0 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 321.2 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 321.5 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 321.8 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 322.0 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 322.2 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 322.5 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 322.8 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 323.0 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 323.2 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 323.5 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 323.8 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 324.0 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 324.2 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 324.5 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 324.8 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 325.0 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 325.2 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 325.5 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 325.8 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 326.0 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 326.2 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 326.5 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 326.8 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 327.0 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 327.2 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 327.5 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 327.8 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 328.0 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 328.2 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 328.5 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 328.8 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 329.0 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 329.2 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 329.5 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 329.8 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 330.0 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 330.2 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 330.5 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 330.8 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 331.0 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 331.2 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 331.5 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 331.8 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 332.0 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 332.2 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 332.5 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 332.8 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 333.0 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 333.2 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 333.5 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 333.8 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 334.0 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 334.2 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 334.5 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 334.8 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 335.0 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 335.2 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 335.5 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 335.8 MiB/6.4 GiB (60.7 MiB/s) with 2 file(s) remaining
Completed 336.0 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 336.2 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 336.5 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 336.8 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 337.0 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 337.2 MiB/6.4 GiB (60.7 MiB/s) with 2 file(s) remaining
Completed 337.5 MiB/6.4 GiB (60.7 MiB/s) with 2 file(s) remaining
Completed 337.8 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 338.0 MiB/6.4 GiB (60.7 MiB/s) with 2 file(s) remaining
Completed 338.2 MiB/6.4 GiB (60.7 MiB/s) with 2 file(s) remaining
Completed 338.5 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 338.8 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 339.0 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 339.2 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 339.5 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 339.8 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 340.0 MiB/6.4 GiB (60.6 MiB/s) with 2 file(s) remaining
Completed 340.2 MiB/6.4 GiB (60.6 MiB/s) with 2 file(s) remaining
Completed 340.5 MiB/6.4 GiB (60.6 MiB/s) with 2 file(s) remaining
Completed 340.8 MiB/6.4 GiB (60.7 MiB/s) with 2 file(s) remaining
Completed 341.0 MiB/6.4 GiB (60.7 MiB/s) with 2 file(s) remaining
Completed 341.2 MiB/6.4 GiB (60.7 MiB/s) with 2 file(s) remaining
Completed 341.5 MiB/6.4 GiB (60.6 MiB/s) with 2 file(s) remaining
Completed 341.8 MiB/6.4 GiB (60.5 MiB/s) with 2 file(s) remaining
Completed 342.0 MiB/6.4 GiB (60.6 MiB/s) with 2 file(s) remaining
Completed 342.2 MiB/6.4 GiB (60.4 MiB/s) with 2 file(s) remaining
Completed 342.5 MiB/6.4 GiB (60.4 MiB/s) with 2 file(s) remaining
Completed 342.8 MiB/6.4 GiB (60.5 MiB/s) with 2 file(s) remaining
Completed 343.0 MiB/6.4 GiB (60.5 MiB/s) with 2 file(s) remaining
Completed 343.2 MiB/6.4 GiB (60.5 MiB/s) with 2 file(s) remaining
Completed 343.5 MiB/6.4 GiB (60.5 MiB/s) with 2 file(s) remaining
Completed 343.8 MiB/6.4 GiB (60.5 MiB/s) with 2 file(s) remaining
Completed 344.0 MiB/6.4 GiB (60.5 MiB/s) with 2 file(s) remaining
Completed 344.2 MiB/6.4 GiB (60.6 MiB/s) with 2 file(s) remaining
Completed 344.5 MiB/6.4 GiB (60.6 MiB/s) with 2 file(s) remaining
Completed 344.8 MiB/6.4 GiB (60.6 MiB/s) with 2 file(s) remaining
Completed 345.0 MiB/6.4 GiB (60.6 MiB/s) with 2 file(s) remaining
Completed 345.2 MiB/6.4 GiB (60.6 MiB/s) with 2 file(s) remaining
Completed 345.5 MiB/6.4 GiB (60.6 MiB/s) with 2 file(s) remaining
Completed 345.8 MiB/6.4 GiB (60.6 MiB/s) with 2 file(s) remaining
Completed 346.0 MiB/6.4 GiB (60.6 MiB/s) with 2 file(s) remaining
Completed 346.2 MiB/6.4 GiB (60.6 MiB/s) with 2 file(s) remaining
Completed 346.5 MiB/6.4 GiB (60.6 MiB/s) with 2 file(s) remaining
Completed 346.8 MiB/6.4 GiB (60.5 MiB/s) with 2 file(s) remaining
Completed 347.0 MiB/6.4 GiB (60.6 MiB/s) with 2 file(s) remaining
Completed 347.2 MiB/6.4 GiB (60.6 MiB/s) with 2 file(s) remaining
Completed 347.5 MiB/6.4 GiB (60.6 MiB/s) with 2 file(s) remaining
Completed 347.8 MiB/6.4 GiB (60.7 MiB/s) with 2 file(s) remaining
Completed 348.0 MiB/6.4 GiB (60.7 MiB/s) with 2 file(s) remaining
Completed 348.2 MiB/6.4 GiB (60.7 MiB/s) with 2 file(s) remaining
Completed 348.5 MiB/6.4 GiB (60.7 MiB/s) with 2 file(s) remaining
Completed 348.8 MiB/6.4 GiB (60.7 MiB/s) with 2 file(s) remaining
Completed 349.0 MiB/6.4 GiB (60.6 MiB/s) with 2 file(s) remaining
Completed 349.2 MiB/6.4 GiB (60.7 MiB/s) with 2 file(s) remaining
Completed 349.5 MiB/6.4 GiB (60.7 MiB/s) with 2 file(s) remaining
Completed 349.8 MiB/6.4 GiB (60.7 MiB/s) with 2 file(s) remaining
Completed 350.0 MiB/6.4 GiB (60.7 MiB/s) with 2 file(s) remaining
Completed 350.2 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 350.5 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 350.8 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 351.0 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 351.2 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 351.5 MiB/6.4 GiB (60.7 MiB/s) with 2 file(s) remaining
Completed 351.8 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 352.0 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 352.2 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 352.5 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 352.8 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 353.0 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 353.2 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 353.5 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 353.8 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 354.0 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 354.2 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 354.5 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 354.8 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 355.0 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 355.2 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 355.5 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 355.8 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 356.0 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 356.2 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 356.5 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 356.8 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 357.0 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 357.2 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 357.5 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 357.8 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 358.0 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 358.2 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 358.5 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 358.8 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 359.0 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 359.2 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 359.5 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 359.8 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 360.0 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 360.2 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 360.5 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 360.8 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 361.0 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 361.2 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 361.5 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 361.8 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 362.0 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 362.2 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 362.5 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 362.8 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 363.0 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 363.2 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 363.5 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 363.8 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 364.0 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 364.2 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 364.5 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 364.8 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 365.0 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 365.2 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 365.5 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 365.8 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 366.0 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 366.2 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 366.5 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 366.8 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 367.0 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 367.2 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 367.5 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 367.8 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 368.0 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 368.2 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 368.5 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 368.8 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 369.0 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 369.2 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 369.5 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 369.8 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 370.0 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 370.2 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 370.5 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 370.8 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 371.0 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 371.2 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 371.5 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 371.8 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 372.0 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 372.2 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 372.5 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 372.8 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 373.0 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 373.2 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 373.5 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 373.8 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 374.0 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 374.2 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 374.5 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 374.8 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 375.0 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 375.2 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 375.5 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 375.8 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 376.0 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 376.2 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 376.5 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 376.8 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 377.0 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 377.2 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 377.5 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 377.8 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 378.0 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 378.2 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 378.5 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 378.8 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 379.0 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 379.2 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 379.5 MiB/6.4 GiB (60.7 MiB/s) with 2 file(s) remaining
Completed 379.8 MiB/6.4 GiB (60.7 MiB/s) with 2 file(s) remaining
Completed 380.0 MiB/6.4 GiB (60.7 MiB/s) with 2 file(s) remaining
Completed 380.2 MiB/6.4 GiB (60.7 MiB/s) with 2 file(s) remaining
Completed 380.5 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 380.8 MiB/6.4 GiB (60.7 MiB/s) with 2 file(s) remaining
Completed 381.0 MiB/6.4 GiB (60.7 MiB/s) with 2 file(s) remaining
Completed 381.2 MiB/6.4 GiB (60.7 MiB/s) with 2 file(s) remaining
Completed 381.5 MiB/6.4 GiB (60.6 MiB/s) with 2 file(s) remaining
Completed 381.8 MiB/6.4 GiB (60.7 MiB/s) with 2 file(s) remaining
Completed 382.0 MiB/6.4 GiB (60.7 MiB/s) with 2 file(s) remaining
Completed 382.2 MiB/6.4 GiB (60.7 MiB/s) with 2 file(s) remaining
Completed 382.5 MiB/6.4 GiB (60.6 MiB/s) with 2 file(s) remaining
Completed 382.8 MiB/6.4 GiB (60.6 MiB/s) with 2 file(s) remaining
Completed 383.0 MiB/6.4 GiB (60.6 MiB/s) with 2 file(s) remaining
Completed 383.2 MiB/6.4 GiB (60.5 MiB/s) with 2 file(s) remaining
Completed 383.5 MiB/6.4 GiB (60.5 MiB/s) with 2 file(s) remaining
Completed 383.8 MiB/6.4 GiB (60.5 MiB/s) with 2 file(s) remaining
Completed 384.0 MiB/6.4 GiB (60.5 MiB/s) with 2 file(s) remaining
Completed 384.2 MiB/6.4 GiB (60.5 MiB/s) with 2 file(s) remaining
Completed 384.5 MiB/6.4 GiB (60.5 MiB/s) with 2 file(s) remaining
Completed 384.8 MiB/6.4 GiB (60.5 MiB/s) with 2 file(s) remaining
Completed 385.0 MiB/6.4 GiB (60.5 MiB/s) with 2 file(s) remaining
Completed 385.2 MiB/6.4 GiB (60.5 MiB/s) with 2 file(s) remaining
Completed 385.5 MiB/6.4 GiB (60.4 MiB/s) with 2 file(s) remaining
Completed 385.8 MiB/6.4 GiB (60.4 MiB/s) with 2 file(s) remaining
Completed 386.0 MiB/6.4 GiB (60.5 MiB/s) with 2 file(s) remaining
Completed 386.2 MiB/6.4 GiB (60.5 MiB/s) with 2 file(s) remaining
Completed 386.5 MiB/6.4 GiB (60.5 MiB/s) with 2 file(s) remaining
Completed 386.8 MiB/6.4 GiB (60.4 MiB/s) with 2 file(s) remaining
Completed 387.0 MiB/6.4 GiB (60.4 MiB/s) with 2 file(s) remaining
Completed 387.2 MiB/6.4 GiB (60.3 MiB/s) with 2 file(s) remaining
Completed 387.5 MiB/6.4 GiB (60.3 MiB/s) with 2 file(s) remaining
Completed 387.8 MiB/6.4 GiB (60.4 MiB/s) with 2 file(s) remaining
Completed 388.0 MiB/6.4 GiB (60.3 MiB/s) with 2 file(s) remaining
Completed 388.2 MiB/6.4 GiB (60.3 MiB/s) with 2 file(s) remaining
Completed 388.5 MiB/6.4 GiB (60.3 MiB/s) with 2 file(s) remaining
Completed 388.8 MiB/6.4 GiB (60.4 MiB/s) with 2 file(s) remaining
Completed 389.0 MiB/6.4 GiB (60.4 MiB/s) with 2 file(s) remaining
Completed 389.2 MiB/6.4 GiB (60.3 MiB/s) with 2 file(s) remaining
Completed 389.5 MiB/6.4 GiB (60.4 MiB/s) with 2 file(s) remaining
Completed 389.8 MiB/6.4 GiB (60.4 MiB/s) with 2 file(s) remaining
Completed 390.0 MiB/6.4 GiB (60.4 MiB/s) with 2 file(s) remaining
Completed 390.2 MiB/6.4 GiB (60.3 MiB/s) with 2 file(s) remaining
Completed 390.5 MiB/6.4 GiB (60.3 MiB/s) with 2 file(s) remaining
Completed 390.8 MiB/6.4 GiB (60.4 MiB/s) with 2 file(s) remaining
Completed 391.0 MiB/6.4 GiB (60.4 MiB/s) with 2 file(s) remaining
Completed 391.2 MiB/6.4 GiB (60.4 MiB/s) with 2 file(s) remaining
Completed 391.5 MiB/6.4 GiB (60.4 MiB/s) with 2 file(s) remaining
Completed 391.8 MiB/6.4 GiB (60.4 MiB/s) with 2 file(s) remaining
Completed 392.0 MiB/6.4 GiB (60.4 MiB/s) with 2 file(s) remaining
Completed 392.2 MiB/6.4 GiB (60.4 MiB/s) with 2 file(s) remaining
Completed 392.5 MiB/6.4 GiB (60.4 MiB/s) with 2 file(s) remaining
Completed 392.8 MiB/6.4 GiB (60.4 MiB/s) with 2 file(s) remaining
Completed 393.0 MiB/6.4 GiB (60.4 MiB/s) with 2 file(s) remaining
Completed 393.2 MiB/6.4 GiB (60.5 MiB/s) with 2 file(s) remaining
Completed 393.5 MiB/6.4 GiB (60.5 MiB/s) with 2 file(s) remaining
Completed 393.8 MiB/6.4 GiB (60.4 MiB/s) with 2 file(s) remaining
Completed 394.0 MiB/6.4 GiB (60.4 MiB/s) with 2 file(s) remaining
Completed 394.2 MiB/6.4 GiB (60.4 MiB/s) with 2 file(s) remaining
Completed 394.5 MiB/6.4 GiB (60.4 MiB/s) with 2 file(s) remaining
Completed 394.8 MiB/6.4 GiB (60.4 MiB/s) with 2 file(s) remaining
Completed 395.0 MiB/6.4 GiB (60.4 MiB/s) with 2 file(s) remaining
Completed 395.2 MiB/6.4 GiB (60.5 MiB/s) with 2 file(s) remaining
Completed 395.5 MiB/6.4 GiB (60.5 MiB/s) with 2 file(s) remaining
Completed 395.8 MiB/6.4 GiB (60.4 MiB/s) with 2 file(s) remaining
Completed 396.0 MiB/6.4 GiB (60.5 MiB/s) with 2 file(s) remaining
Completed 396.2 MiB/6.4 GiB (60.5 MiB/s) with 2 file(s) remaining
Completed 396.5 MiB/6.4 GiB (60.5 MiB/s) with 2 file(s) remaining
Completed 396.8 MiB/6.4 GiB (60.5 MiB/s) with 2 file(s) remaining
Completed 397.0 MiB/6.4 GiB (60.6 MiB/s) with 2 file(s) remaining
Completed 397.2 MiB/6.4 GiB (60.6 MiB/s) with 2 file(s) remaining
Completed 397.5 MiB/6.4 GiB (60.6 MiB/s) with 2 file(s) remaining
Completed 397.8 MiB/6.4 GiB (60.6 MiB/s) with 2 file(s) remaining
Completed 398.0 MiB/6.4 GiB (60.6 MiB/s) with 2 file(s) remaining
Completed 398.2 MiB/6.4 GiB (60.6 MiB/s) with 2 file(s) remaining
Completed 398.5 MiB/6.4 GiB (60.6 MiB/s) with 2 file(s) remaining
Completed 398.8 MiB/6.4 GiB (60.7 MiB/s) with 2 file(s) remaining
Completed 399.0 MiB/6.4 GiB (60.6 MiB/s) with 2 file(s) remaining
Completed 399.2 MiB/6.4 GiB (60.6 MiB/s) with 2 file(s) remaining
Completed 399.5 MiB/6.4 GiB (60.6 MiB/s) with 2 file(s) remaining
Completed 399.8 MiB/6.4 GiB (60.6 MiB/s) with 2 file(s) remaining
Completed 400.0 MiB/6.4 GiB (60.6 MiB/s) with 2 file(s) remaining
Completed 400.2 MiB/6.4 GiB (60.6 MiB/s) with 2 file(s) remaining
Completed 400.5 MiB/6.4 GiB (60.6 MiB/s) with 2 file(s) remaining
Completed 400.8 MiB/6.4 GiB (60.6 MiB/s) with 2 file(s) remaining
Completed 401.0 MiB/6.4 GiB (60.7 MiB/s) with 2 file(s) remaining
Completed 401.2 MiB/6.4 GiB (60.6 MiB/s) with 2 file(s) remaining
Completed 401.5 MiB/6.4 GiB (60.7 MiB/s) with 2 file(s) remaining
Completed 401.8 MiB/6.4 GiB (60.7 MiB/s) with 2 file(s) remaining
Completed 402.0 MiB/6.4 GiB (60.7 MiB/s) with 2 file(s) remaining
Completed 402.2 MiB/6.4 GiB (60.7 MiB/s) with 2 file(s) remaining
Completed 402.5 MiB/6.4 GiB (60.7 MiB/s) with 2 file(s) remaining
Completed 402.8 MiB/6.4 GiB (60.7 MiB/s) with 2 file(s) remaining
Completed 403.0 MiB/6.4 GiB (60.7 MiB/s) with 2 file(s) remaining
Completed 403.2 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 403.5 MiB/6.4 GiB (60.7 MiB/s) with 2 file(s) remaining
Completed 403.8 MiB/6.4 GiB (60.7 MiB/s) with 2 file(s) remaining
Completed 404.0 MiB/6.4 GiB (60.7 MiB/s) with 2 file(s) remaining
Completed 404.2 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 404.5 MiB/6.4 GiB (60.7 MiB/s) with 2 file(s) remaining
Completed 404.8 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 405.0 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 405.2 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 405.5 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 405.8 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 406.0 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 406.2 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 406.5 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 406.8 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 407.0 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 407.2 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 407.5 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 407.8 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 408.0 MiB/6.4 GiB (60.8 MiB/s) with 2 file(s) remaining
Completed 408.2 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 408.5 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 408.8 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 409.0 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 409.2 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 409.5 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 409.8 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 410.0 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 410.2 MiB/6.4 GiB (60.9 MiB/s) with 2 file(s) remaining
Completed 410.5 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 410.8 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 411.0 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 411.2 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 411.5 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 411.8 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 412.0 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 412.2 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 412.5 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 412.8 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 413.0 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 413.2 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 413.5 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 413.8 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 414.0 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 414.2 MiB/6.4 GiB (61.0 MiB/s) with 2 file(s) remaining
Completed 414.5 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 414.8 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 415.0 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 415.2 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 415.5 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 415.8 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 416.0 MiB/6.4 GiB (61.1 MiB/s) with 2 file(s) remaining
Completed 416.2 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 416.5 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 416.8 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 417.0 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 417.2 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 417.5 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 417.8 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 418.0 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 418.2 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 418.5 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 418.8 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 419.0 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 419.2 MiB/6.4 GiB (61.2 MiB/s) with 2 file(s) remaining
Completed 419.5 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 419.8 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 420.0 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 420.2 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 420.5 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 420.8 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 421.0 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 421.2 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 421.5 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 421.8 MiB/6.4 GiB (61.4 MiB/s) with 2 file(s) remaining
Completed 422.0 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 422.2 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 422.5 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 422.8 MiB/6.4 GiB (61.3 MiB/s) with 2 file(s) remaining
Completed 423.0 MiB/6.4 GiB (61.4 MiB/s) with 2 file(s) remaining
Completed 423.2 MiB/6.4 GiB (61.4 MiB/s) with 2 file(s) remaining
Completed 423.5 MiB/6.4 GiB (61.4 MiB/s) with 2 file(s) remaining
Completed 423.8 MiB/6.4 GiB (61.4 MiB/s) with 2 file(s) remaining
Completed 424.0 MiB/6.4 GiB (61.4 MiB/s) with 2 file(s) remaining
Completed 424.2 MiB/6.4 GiB (61.4 MiB/s) with 2 file(s) remaining
Completed 424.5 MiB/6.4 GiB (61.4 MiB/s) with 2 file(s) remaining
Completed 424.8 MiB/6.4 GiB (61.4 MiB/s) with 2 file(s) remaining
Completed 425.0 MiB/6.4 GiB (61.4 MiB/s) with 2 file(s) remaining
Completed 425.2 MiB/6.4 GiB (61.4 MiB/s) with 2 file(s) remaining
Completed 425.5 MiB/6.4 GiB (61.4 MiB/s) with 2 file(s) remaining
Completed 425.8 MiB/6.4 GiB (61.4 MiB/s) with 2 file(s) remaining
Completed 426.0 MiB/6.4 GiB (61.4 MiB/s) with 2 file(s) remaining
Completed 426.2 MiB/6.4 GiB (61.5 MiB/s) with 2 file(s) remaining
Completed 426.5 MiB/6.4 GiB (61.4 MiB/s) with 2 file(s) remaining
Completed 426.8 MiB/6.4 GiB (61.4 MiB/s) with 2 file(s) remaining
Completed 427.0 MiB/6.4 GiB (61.4 MiB/s) with 2 file(s) remaining
Completed 427.2 MiB/6.4 GiB (61.4 MiB/s) with 2 file(s) remaining
Completed 427.5 MiB/6.4 GiB (61.4 MiB/s) with 2 file(s) remaining
Completed 427.8 MiB/6.4 GiB (61.5 MiB/s) with 2 file(s) remaining
Completed 428.0 MiB/6.4 GiB (61.5 MiB/s) with 2 file(s) remaining
Completed 428.2 MiB/6.4 GiB (61.5 MiB/s) with 2 file(s) remaining
Completed 428.5 MiB/6.4 GiB (61.4 MiB/s) with 2 file(s) remaining
Completed 428.8 MiB/6.4 GiB (61.4 MiB/s) with 2 file(s) remaining
Completed 429.0 MiB/6.4 GiB (61.5 MiB/s) with 2 file(s) remaining
Completed 429.2 MiB/6.4 GiB (61.5 MiB/s) with 2 file(s) remaining
Completed 429.5 MiB/6.4 GiB (61.4 MiB/s) with 2 file(s) remaining
Completed 429.8 MiB/6.4 GiB (61.4 MiB/s) with 2 file(s) remaining
Completed 430.0 MiB/6.4 GiB (61.4 MiB/s) with 2 file(s) remaining
Completed 430.2 MiB/6.4 GiB (61.5 MiB/s) with 2 file(s) remaining
Completed 430.5 MiB/6.4 GiB (61.5 MiB/s) with 2 file(s) remaining
Completed 430.8 MiB/6.4 GiB (61.5 MiB/s) with 2 file(s) remaining
Completed 431.0 MiB/6.4 GiB (61.5 MiB/s) with 2 file(s) remaining
Completed 431.2 MiB/6.4 GiB (61.5 MiB/s) with 2 file(s) remaining
Completed 431.5 MiB/6.4 GiB (61.5 MiB/s) with 2 file(s) remaining
Completed 431.8 MiB/6.4 GiB (61.5 MiB/s) with 2 file(s) remaining
Completed 432.0 MiB/6.4 GiB (61.5 MiB/s) with 2 file(s) remaining
Completed 432.2 MiB/6.4 GiB (61.5 MiB/s) with 2 file(s) remaining
Completed 432.5 MiB/6.4 GiB (61.5 MiB/s) with 2 file(s) remaining
Completed 432.8 MiB/6.4 GiB (61.5 MiB/s) with 2 file(s) remaining
Completed 433.0 MiB/6.4 GiB (61.5 MiB/s) with 2 file(s) remaining
Completed 433.2 MiB/6.4 GiB (61.6 MiB/s) with 2 file(s) remaining
Completed 433.5 MiB/6.4 GiB (61.6 MiB/s) with 2 file(s) remaining
Completed 433.8 MiB/6.4 GiB (61.6 MiB/s) with 2 file(s) remaining
Completed 434.0 MiB/6.4 GiB (61.6 MiB/s) with 2 file(s) remaining
Completed 434.2 MiB/6.4 GiB (61.5 MiB/s) with 2 file(s) remaining
Completed 434.5 MiB/6.4 GiB (61.6 MiB/s) with 2 file(s) remaining
Completed 434.8 MiB/6.4 GiB (61.5 MiB/s) with 2 file(s) remaining
Completed 435.0 MiB/6.4 GiB (61.5 MiB/s) with 2 file(s) remaining
Completed 435.2 MiB/6.4 GiB (61.5 MiB/s) with 2 file(s) remaining
Completed 435.5 MiB/6.4 GiB (61.5 MiB/s) with 2 file(s) remaining
Completed 435.8 MiB/6.4 GiB (61.5 MiB/s) with 2 file(s) remaining
Completed 436.0 MiB/6.4 GiB (61.6 MiB/s) with 2 file(s) remaining
Completed 436.2 MiB/6.4 GiB (61.5 MiB/s) with 2 file(s) remaining
Completed 436.5 MiB/6.4 GiB (61.6 MiB/s) with 2 file(s) remaining
Completed 436.8 MiB/6.4 GiB (61.6 MiB/s) with 2 file(s) remaining
Completed 437.0 MiB/6.4 GiB (61.6 MiB/s) with 2 file(s) remaining
Completed 437.2 MiB/6.4 GiB (61.6 MiB/s) with 2 file(s) remaining
Completed 437.5 MiB/6.4 GiB (61.6 MiB/s) with 2 file(s) remaining
Completed 437.8 MiB/6.4 GiB (61.6 MiB/s) with 2 file(s) remaining
Completed 438.0 MiB/6.4 GiB (61.6 MiB/s) with 2 file(s) remaining
Completed 438.2 MiB/6.4 GiB (61.6 MiB/s) with 2 file(s) remaining
Completed 438.5 MiB/6.4 GiB (61.6 MiB/s) with 2 file(s) remaining
Completed 438.8 MiB/6.4 GiB (61.7 MiB/s) with 2 file(s) remaining
Completed 439.0 MiB/6.4 GiB (61.6 MiB/s) with 2 file(s) remaining
Completed 439.2 MiB/6.4 GiB (61.6 MiB/s) with 2 file(s) remaining
Completed 439.5 MiB/6.4 GiB (61.7 MiB/s) with 2 file(s) remaining
Completed 439.8 MiB/6.4 GiB (61.6 MiB/s) with 2 file(s) remaining
Completed 440.0 MiB/6.4 GiB (61.7 MiB/s) with 2 file(s) remaining
Completed 440.2 MiB/6.4 GiB (61.6 MiB/s) with 2 file(s) remaining
Completed 440.5 MiB/6.4 GiB (61.6 MiB/s) with 2 file(s) remaining
Completed 440.8 MiB/6.4 GiB (61.7 MiB/s) with 2 file(s) remaining
Completed 441.0 MiB/6.4 GiB (61.7 MiB/s) with 2 file(s) remaining
Completed 441.2 MiB/6.4 GiB (61.7 MiB/s) with 2 file(s) remaining
Completed 441.5 MiB/6.4 GiB (61.7 MiB/s) with 2 file(s) remaining
Completed 441.8 MiB/6.4 GiB (61.6 MiB/s) with 2 file(s) remaining
Completed 442.0 MiB/6.4 GiB (61.6 MiB/s) with 2 file(s) remaining
Completed 442.2 MiB/6.4 GiB (61.6 MiB/s) with 2 file(s) remaining
Completed 442.5 MiB/6.4 GiB (61.6 MiB/s) with 2 file(s) remaining
Completed 442.8 MiB/6.4 GiB (61.6 MiB/s) with 2 file(s) remaining
Completed 443.0 MiB/6.4 GiB (61.6 MiB/s) with 2 file(s) remaining
Completed 443.2 MiB/6.4 GiB (61.6 MiB/s) with 2 file(s) remaining
Completed 443.5 MiB/6.4 GiB (61.6 MiB/s) with 2 file(s) remaining
Completed 443.8 MiB/6.4 GiB (61.6 MiB/s) with 2 file(s) remaining
Completed 444.0 MiB/6.4 GiB (61.6 MiB/s) with 2 file(s) remaining
Completed 444.2 MiB/6.4 GiB (61.6 MiB/s) with 2 file(s) remaining
Completed 444.5 MiB/6.4 GiB (61.6 MiB/s) with 2 file(s) remaining
Completed 444.8 MiB/6.4 GiB (61.6 MiB/s) with 2 file(s) remaining
Completed 445.0 MiB/6.4 GiB (61.6 MiB/s) with 2 file(s) remaining
Completed 445.2 MiB/6.4 GiB (61.5 MiB/s) with 2 file(s) remaining
Completed 445.5 MiB/6.4 GiB (61.5 MiB/s) with 2 file(s) remaining
Completed 445.8 MiB/6.4 GiB (61.5 MiB/s) with 2 file(s) remaining
Completed 446.0 MiB/6.4 GiB (61.5 MiB/s) with 2 file(s) remaining
Completed 446.2 MiB/6.4 GiB (61.5 MiB/s) with 2 file(s) remaining
Completed 446.5 MiB/6.4 GiB (61.5 MiB/s) with 2 file(s) remaining
Completed 446.8 MiB/6.4 GiB (61.5 MiB/s) with 2 file(s) remaining
Completed 447.0 MiB/6.4 GiB (61.5 MiB/s) with 2 file(s) remaining
Completed 447.2 MiB/6.4 GiB (61.5 MiB/s) with 2 file(s) remaining
Completed 447.5 MiB/6.4 GiB (61.5 MiB/s) with 2 file(s) remaining
Completed 447.8 MiB/6.4 GiB (61.5 MiB/s) with 2 file(s) remaining
Completed 448.0 MiB/6.4 GiB (61.5 MiB/s) with 2 file(s) remaining
Completed 448.2 MiB/6.4 GiB (61.5 MiB/s) with 2 file(s) remaining
Completed 448.5 MiB/6.4 GiB (61.5 MiB/s) with 2 file(s) remaining
Completed 448.8 MiB/6.4 GiB (61.4 MiB/s) with 2 file(s) remaining
Completed 449.0 MiB/6.4 GiB (61.5 MiB/s) with 2 file(s) remaining
Completed 449.2 MiB/6.4 GiB (61.5 MiB/s) with 2 file(s) remaining
Completed 449.5 MiB/6.4 GiB (61.5 MiB/s) with 2 file(s) remaining
Completed 449.8 MiB/6.4 GiB (61.5 MiB/s) with 2 file(s) remaining
Completed 450.0 MiB/6.4 GiB (61.5 MiB/s) with 2 file(s) remaining
Completed 450.2 MiB/6.4 GiB (61.5 MiB/s) with 2 file(s) remaining
Completed 450.5 MiB/6.4 GiB (61.5 MiB/s) with 2 file(s) remaining
Completed 450.8 MiB/6.4 GiB (61.5 MiB/s) with 2 file(s) remaining
Completed 451.0 MiB/6.4 GiB (61.5 MiB/s) with 2 file(s) remaining
Completed 451.2 MiB/6.4 GiB (61.5 MiB/s) with 2 file(s) remaining
Completed 451.5 MiB/6.4 GiB (61.5 MiB/s) with 2 file(s) remaining
Completed 451.8 MiB/6.4 GiB (61.5 MiB/s) with 2 file(s) remaining
Completed 452.0 MiB/6.4 GiB (61.5 MiB/s) with 2 file(s) remaining
Completed 452.2 MiB/6.4 GiB (61.6 MiB/s) with 2 file(s) remaining
Completed 452.5 MiB/6.4 GiB (61.6 MiB/s) with 2 file(s) remaining
Completed 452.8 MiB/6.4 GiB (61.6 MiB/s) with 2 file(s) remaining
Completed 453.0 MiB/6.4 GiB (61.6 MiB/s) with 2 file(s) remaining
Completed 453.2 MiB/6.4 GiB (61.6 MiB/s) with 2 file(s) remaining
Completed 453.5 MiB/6.4 GiB (61.6 MiB/s) with 2 file(s) remaining
Completed 453.8 MiB/6.4 GiB (61.6 MiB/s) with 2 file(s) remaining
Completed 454.0 MiB/6.4 GiB (61.6 MiB/s) with 2 file(s) remaining
Completed 454.2 MiB/6.4 GiB (61.6 MiB/s) with 2 file(s) remaining
Completed 454.5 MiB/6.4 GiB (61.6 MiB/s) with 2 file(s) remaining
Completed 454.8 MiB/6.4 GiB (61.6 MiB/s) with 2 file(s) remaining
Completed 455.0 MiB/6.4 GiB (61.6 MiB/s) with 2 file(s) remaining
Completed 455.2 MiB/6.4 GiB (61.7 MiB/s) with 2 file(s) remaining
Completed 455.5 MiB/6.4 GiB (61.7 MiB/s) with 2 file(s) remaining
Completed 455.8 MiB/6.4 GiB (61.7 MiB/s) with 2 file(s) remaining
Completed 456.0 MiB/6.4 GiB (61.6 MiB/s) with 2 file(s) remaining
Completed 456.2 MiB/6.4 GiB (61.7 MiB/s) with 2 file(s) remaining
Completed 456.5 MiB/6.4 GiB (61.7 MiB/s) with 2 file(s) remaining
Completed 456.8 MiB/6.4 GiB (61.7 MiB/s) with 2 file(s) remaining
Completed 457.0 MiB/6.4 GiB (61.7 MiB/s) with 2 file(s) remaining
Completed 457.2 MiB/6.4 GiB (61.8 MiB/s) with 2 file(s) remaining
Completed 457.5 MiB/6.4 GiB (61.8 MiB/s) with 2 file(s) remaining
Completed 457.8 MiB/6.4 GiB (61.8 MiB/s) with 2 file(s) remaining
Completed 458.0 MiB/6.4 GiB (61.7 MiB/s) with 2 file(s) remaining
Completed 458.2 MiB/6.4 GiB (61.8 MiB/s) with 2 file(s) remaining
Completed 458.5 MiB/6.4 GiB (61.7 MiB/s) with 2 file(s) remaining
Completed 458.8 MiB/6.4 GiB (61.8 MiB/s) with 2 file(s) remaining
Completed 459.0 MiB/6.4 GiB (61.7 MiB/s) with 2 file(s) remaining
Completed 459.2 MiB/6.4 GiB (61.8 MiB/s) with 2 file(s) remaining
Completed 459.5 MiB/6.4 GiB (61.8 MiB/s) with 2 file(s) remaining
Completed 459.8 MiB/6.4 GiB (61.8 MiB/s) with 2 file(s) remaining
Completed 460.0 MiB/6.4 GiB (61.8 MiB/s) with 2 file(s) remaining
Completed 460.2 MiB/6.4 GiB (61.8 MiB/s) with 2 file(s) remaining
Completed 460.5 MiB/6.4 GiB (61.8 MiB/s) with 2 file(s) remaining
Completed 460.8 MiB/6.4 GiB (61.8 MiB/s) with 2 file(s) remaining
Completed 461.0 MiB/6.4 GiB (61.8 MiB/s) with 2 file(s) remaining
Completed 461.2 MiB/6.4 GiB (61.8 MiB/s) with 2 file(s) remaining
Completed 461.5 MiB/6.4 GiB (61.8 MiB/s) with 2 file(s) remaining
Completed 461.8 MiB/6.4 GiB (61.8 MiB/s) with 2 file(s) remaining
Completed 462.0 MiB/6.4 GiB (61.9 MiB/s) with 2 file(s) remaining
Completed 462.2 MiB/6.4 GiB (61.9 MiB/s) with 2 file(s) remaining
Completed 462.5 MiB/6.4 GiB (61.9 MiB/s) with 2 file(s) remaining
Completed 462.8 MiB/6.4 GiB (61.8 MiB/s) with 2 file(s) remaining
Completed 463.0 MiB/6.4 GiB (61.8 MiB/s) with 2 file(s) remaining
Completed 463.2 MiB/6.4 GiB (61.9 MiB/s) with 2 file(s) remaining
Completed 463.5 MiB/6.4 GiB (61.9 MiB/s) with 2 file(s) remaining
Completed 463.8 MiB/6.4 GiB (61.9 MiB/s) with 2 file(s) remaining
Completed 464.0 MiB/6.4 GiB (61.9 MiB/s) with 2 file(s) remaining
Completed 464.2 MiB/6.4 GiB (61.9 MiB/s) with 2 file(s) remaining
Completed 464.5 MiB/6.4 GiB (61.9 MiB/s) with 2 file(s) remaining
Completed 464.8 MiB/6.4 GiB (61.9 MiB/s) with 2 file(s) remaining
Completed 465.0 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 465.2 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 465.5 MiB/6.4 GiB (61.9 MiB/s) with 2 file(s) remaining
Completed 465.8 MiB/6.4 GiB (61.9 MiB/s) with 2 file(s) remaining
Completed 466.0 MiB/6.4 GiB (61.8 MiB/s) with 2 file(s) remaining
Completed 466.2 MiB/6.4 GiB (61.9 MiB/s) with 2 file(s) remaining
Completed 466.5 MiB/6.4 GiB (61.9 MiB/s) with 2 file(s) remaining
Completed 466.8 MiB/6.4 GiB (61.9 MiB/s) with 2 file(s) remaining
Completed 467.0 MiB/6.4 GiB (61.8 MiB/s) with 2 file(s) remaining
Completed 467.2 MiB/6.4 GiB (61.9 MiB/s) with 2 file(s) remaining
Completed 467.5 MiB/6.4 GiB (61.9 MiB/s) with 2 file(s) remaining
Completed 467.8 MiB/6.4 GiB (61.9 MiB/s) with 2 file(s) remaining
Completed 468.0 MiB/6.4 GiB (61.9 MiB/s) with 2 file(s) remaining
Completed 468.2 MiB/6.4 GiB (61.9 MiB/s) with 2 file(s) remaining
Completed 468.5 MiB/6.4 GiB (61.9 MiB/s) with 2 file(s) remaining
Completed 468.8 MiB/6.4 GiB (61.9 MiB/s) with 2 file(s) remaining
Completed 469.0 MiB/6.4 GiB (61.9 MiB/s) with 2 file(s) remaining
Completed 469.2 MiB/6.4 GiB (61.9 MiB/s) with 2 file(s) remaining
Completed 469.5 MiB/6.4 GiB (61.9 MiB/s) with 2 file(s) remaining
Completed 469.8 MiB/6.4 GiB (61.9 MiB/s) with 2 file(s) remaining
Completed 470.0 MiB/6.4 GiB (61.9 MiB/s) with 2 file(s) remaining
Completed 470.2 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 470.5 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 470.8 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 471.0 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 471.2 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 471.5 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 471.8 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 472.0 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 472.2 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 472.5 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 472.8 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 473.0 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 473.2 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 473.5 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 473.8 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 474.0 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 474.2 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 474.5 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 474.8 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 475.0 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 475.2 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 475.5 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 475.8 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 476.0 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 476.2 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 476.5 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 476.8 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 477.0 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 477.2 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 477.5 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 477.8 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 478.0 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 478.2 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 478.5 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 478.8 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 479.0 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 479.2 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 479.5 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 479.8 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 480.0 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 480.2 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 480.5 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 480.8 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 481.0 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 481.2 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 481.5 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 481.8 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 482.0 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 482.2 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 482.5 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 482.8 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 483.0 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 483.2 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 483.5 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 483.8 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 484.0 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 484.2 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 484.5 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 484.8 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 485.0 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 485.2 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 485.5 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 485.8 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 486.0 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 486.2 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 486.5 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 486.8 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 487.0 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 487.2 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 487.5 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 487.8 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 488.0 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 488.2 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 488.5 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 488.8 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 489.0 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 489.2 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 489.5 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 489.8 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 490.0 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 490.2 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 490.5 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 490.8 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 491.0 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 491.2 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 491.5 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 491.8 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 492.0 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 492.2 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 492.5 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 492.8 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 493.0 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 493.2 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 493.5 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 493.8 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 494.0 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 494.2 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 494.5 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 494.8 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 495.0 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 495.2 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 495.5 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 495.8 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 496.0 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 496.2 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 496.5 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 496.8 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 497.0 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 497.2 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 497.5 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 497.8 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 498.0 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 498.2 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 498.5 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 498.8 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 499.0 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 499.2 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 499.5 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 499.8 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 500.0 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 500.2 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 500.5 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 500.8 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 501.0 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 501.2 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 501.5 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 501.8 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 502.0 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 502.2 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 502.5 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 502.8 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 503.0 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 503.2 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 503.5 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 503.8 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 504.0 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 504.2 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 504.5 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 504.8 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 505.0 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 505.2 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 505.5 MiB/6.4 GiB (61.9 MiB/s) with 2 file(s) remaining
Completed 505.8 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 506.0 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 506.2 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 506.5 MiB/6.4 GiB (61.9 MiB/s) with 2 file(s) remaining
Completed 506.8 MiB/6.4 GiB (61.9 MiB/s) with 2 file(s) remaining
Completed 507.0 MiB/6.4 GiB (61.9 MiB/s) with 2 file(s) remaining
Completed 507.2 MiB/6.4 GiB (61.9 MiB/s) with 2 file(s) remaining
Completed 507.5 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 507.8 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 508.0 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 508.2 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 508.5 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 508.8 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 509.0 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 509.2 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 509.5 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 509.8 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 510.0 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 510.2 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 510.5 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 510.8 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 511.0 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 511.2 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 511.5 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 511.8 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 512.0 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 512.2 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 512.5 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 512.8 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 513.0 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 513.2 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 513.5 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 513.8 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 514.0 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 514.2 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 514.5 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 514.8 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 515.0 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 515.2 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 515.5 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 515.8 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 516.0 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 516.2 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 516.5 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 516.8 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 517.0 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 517.2 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 517.5 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 517.8 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 518.0 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 518.2 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 518.5 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 518.8 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 519.0 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 519.2 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 519.5 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 519.8 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 520.0 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 520.2 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 520.5 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 520.8 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 521.0 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 521.2 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 521.5 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 521.8 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 522.0 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 522.2 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 522.5 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 522.8 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 523.0 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 523.2 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 523.5 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 523.8 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 524.0 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 524.2 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 524.5 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 524.8 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 525.0 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 525.2 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 525.5 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 525.8 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 526.0 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 526.2 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 526.5 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 526.8 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 527.0 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 527.2 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 527.5 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 527.8 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 528.0 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 528.2 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 528.5 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 528.8 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 529.0 MiB/6.4 GiB (62.5 MiB/s) with 2 file(s) remaining
Completed 529.2 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 529.5 MiB/6.4 GiB (62.5 MiB/s) with 2 file(s) remaining
Completed 529.8 MiB/6.4 GiB (62.5 MiB/s) with 2 file(s) remaining
Completed 530.0 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 530.2 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 530.5 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 530.8 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 531.0 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 531.2 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 531.5 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 531.8 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 532.0 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 532.2 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 532.5 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 532.8 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 533.0 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 533.2 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 533.5 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 533.8 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 534.0 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 534.2 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 534.5 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 534.8 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 535.0 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 535.2 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 535.5 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 535.8 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 536.0 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 536.2 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 536.5 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 536.8 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 537.0 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 537.2 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 537.5 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 537.8 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 538.0 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 538.2 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 538.5 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 538.8 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 539.0 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 539.2 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 539.5 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 539.8 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 540.0 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 540.2 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 540.5 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 540.8 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 541.0 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 541.2 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 541.5 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 541.8 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 542.0 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 542.2 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 542.5 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 542.8 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 543.0 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 543.2 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 543.5 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 543.8 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 544.0 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 544.2 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 544.5 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 544.8 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 545.0 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 545.2 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 545.5 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 545.8 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 546.0 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 546.2 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 546.5 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 546.8 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 547.0 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 547.2 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 547.5 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 547.8 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 548.0 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 548.2 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 548.5 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 548.8 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 549.0 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 549.2 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 549.5 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 549.8 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 550.0 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 550.2 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 550.5 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 550.8 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 551.0 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 551.2 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 551.5 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 551.8 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 552.0 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 552.2 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 552.5 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 552.8 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 553.0 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 553.2 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 553.5 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 553.8 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 554.0 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 554.2 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 554.5 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 554.8 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 555.0 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 555.2 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 555.5 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 555.8 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 556.0 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 556.2 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 556.5 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 556.8 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 557.0 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 557.2 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 557.5 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 557.8 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 558.0 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 558.2 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 558.5 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 558.8 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 559.0 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 559.2 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 559.5 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 559.8 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 560.0 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 560.2 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 560.5 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 560.8 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 561.0 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 561.2 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 561.5 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 561.8 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 562.0 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 562.2 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 562.5 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 562.8 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 563.0 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 563.2 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 563.5 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 563.8 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 564.0 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 564.2 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 564.5 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 564.8 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 565.0 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 565.2 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 565.5 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 565.8 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 566.0 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 566.2 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 566.5 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 566.8 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 567.0 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 567.2 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 567.5 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 567.8 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 568.0 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 568.2 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 568.5 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 568.8 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 569.0 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 569.2 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 569.5 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 569.8 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 570.0 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 570.2 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 570.5 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 570.8 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 571.0 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 571.2 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 571.5 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 571.8 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 572.0 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 572.2 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 572.5 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 572.8 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 573.0 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 573.2 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 573.5 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 573.8 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 574.0 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 574.2 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 574.5 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 574.8 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 575.0 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 575.2 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 575.5 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 575.8 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 576.0 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 576.2 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 576.5 MiB/6.4 GiB (61.9 MiB/s) with 2 file(s) remaining
Completed 576.8 MiB/6.4 GiB (61.9 MiB/s) with 2 file(s) remaining
Completed 577.0 MiB/6.4 GiB (61.9 MiB/s) with 2 file(s) remaining
Completed 577.2 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 577.5 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 577.8 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 578.0 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 578.2 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 578.5 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 578.8 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 579.0 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 579.2 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 579.5 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 579.8 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 580.0 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 580.2 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 580.5 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 580.8 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 581.0 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 581.2 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 581.5 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 581.8 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 582.0 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 582.2 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 582.5 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 582.8 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 583.0 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 583.2 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 583.5 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 583.8 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 584.0 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 584.2 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 584.5 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 584.8 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 585.0 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 585.2 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 585.5 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 585.8 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 586.0 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 586.2 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 586.5 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 586.8 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 587.0 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 587.2 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 587.5 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 587.8 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 588.0 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 588.2 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 588.5 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 588.8 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 589.0 MiB/6.4 GiB (61.9 MiB/s) with 2 file(s) remaining
Completed 589.2 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 589.5 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 589.8 MiB/6.4 GiB (61.9 MiB/s) with 2 file(s) remaining
Completed 590.0 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 590.2 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 590.5 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 590.8 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 591.0 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 591.2 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 591.5 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 591.8 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 592.0 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 592.2 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 592.5 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 592.8 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 593.0 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 593.2 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 593.5 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 593.8 MiB/6.4 GiB (62.0 MiB/s) with 2 file(s) remaining
Completed 594.0 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 594.2 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 594.5 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 594.8 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 595.0 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 595.2 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 595.5 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 595.8 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 596.0 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 596.2 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 596.5 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 596.8 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 597.0 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 597.2 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 597.5 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 597.8 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 598.0 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 598.2 MiB/6.4 GiB (62.1 MiB/s) with 2 file(s) remaining
Completed 598.5 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 598.8 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 599.0 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 599.2 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 599.5 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 599.8 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 600.0 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 600.2 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 600.5 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 600.8 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 601.0 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 601.2 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 601.5 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 601.8 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 602.0 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 602.2 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 602.5 MiB/6.4 GiB (62.2 MiB/s) with 2 file(s) remaining
Completed 602.8 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 603.0 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 603.2 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 603.5 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 603.8 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 604.0 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 604.2 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 604.5 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 604.8 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 605.0 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 605.2 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 605.5 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 605.8 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 606.0 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 606.2 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 606.5 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 606.8 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 607.0 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 607.2 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 607.5 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 607.8 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 608.0 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 608.2 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 608.5 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 608.8 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 609.0 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 609.2 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 609.5 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 609.8 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 610.0 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 610.2 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 610.5 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 610.8 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 611.0 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 611.2 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 611.5 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 611.8 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 612.0 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 612.2 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 612.5 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 612.8 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 613.0 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 613.2 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 613.5 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 613.8 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 614.0 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 614.2 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 614.5 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 614.8 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 615.0 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 615.2 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 615.5 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 615.8 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 616.0 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 616.2 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 616.5 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 616.8 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 617.0 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 617.2 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 617.5 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 617.8 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 618.0 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 618.2 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 618.5 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 618.8 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 619.0 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 619.2 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 619.5 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 619.8 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 620.0 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 620.2 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 620.5 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 620.8 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 621.0 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 621.2 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 621.5 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 621.8 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 622.0 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 622.2 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 622.5 MiB/6.4 GiB (62.5 MiB/s) with 2 file(s) remaining
Completed 622.8 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 623.0 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 623.2 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 623.5 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 623.8 MiB/6.4 GiB (62.5 MiB/s) with 2 file(s) remaining
Completed 624.0 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 624.2 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 624.5 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 624.8 MiB/6.4 GiB (62.5 MiB/s) with 2 file(s) remaining
Completed 625.0 MiB/6.4 GiB (62.5 MiB/s) with 2 file(s) remaining
Completed 625.2 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 625.5 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 625.8 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 626.0 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 626.2 MiB/6.4 GiB (62.5 MiB/s) with 2 file(s) remaining
Completed 626.5 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 626.8 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 627.0 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 627.2 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 627.5 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 627.8 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 628.0 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 628.2 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 628.5 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 628.8 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 629.0 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 629.2 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 629.5 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 629.8 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 630.0 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 630.2 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 630.5 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 630.8 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 631.0 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 631.2 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 631.5 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 631.8 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 632.0 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 632.2 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 632.5 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 632.8 MiB/6.4 GiB (62.5 MiB/s) with 2 file(s) remaining
Completed 633.0 MiB/6.4 GiB (62.5 MiB/s) with 2 file(s) remaining
Completed 633.2 MiB/6.4 GiB (62.5 MiB/s) with 2 file(s) remaining
Completed 633.5 MiB/6.4 GiB (62.5 MiB/s) with 2 file(s) remaining
Completed 633.8 MiB/6.4 GiB (62.5 MiB/s) with 2 file(s) remaining
Completed 634.0 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 634.2 MiB/6.4 GiB (62.5 MiB/s) with 2 file(s) remaining
Completed 634.5 MiB/6.4 GiB (62.5 MiB/s) with 2 file(s) remaining
Completed 634.8 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 635.0 MiB/6.4 GiB (62.5 MiB/s) with 2 file(s) remaining
Completed 635.2 MiB/6.4 GiB (62.5 MiB/s) with 2 file(s) remaining
Completed 635.5 MiB/6.4 GiB (62.5 MiB/s) with 2 file(s) remaining
Completed 635.8 MiB/6.4 GiB (62.5 MiB/s) with 2 file(s) remaining
Completed 636.0 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 636.2 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 636.5 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 636.8 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 637.0 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 637.2 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 637.5 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 637.8 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 638.0 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 638.2 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 638.5 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 638.8 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 639.0 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 639.2 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 639.5 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 639.8 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 640.0 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 640.2 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 640.5 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 640.8 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 641.0 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 641.2 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 641.5 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 641.8 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 642.0 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 642.2 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 642.5 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 642.8 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 643.0 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 643.2 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 643.5 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 643.8 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 644.0 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 644.2 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 644.5 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 644.8 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 645.0 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 645.2 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 645.5 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 645.8 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 646.0 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 646.2 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 646.5 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 646.8 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 647.0 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 647.2 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 647.5 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 647.8 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 648.0 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 648.2 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 648.5 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 648.8 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 649.0 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 649.2 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 649.5 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 649.8 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 650.0 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 650.2 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 650.5 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 650.8 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 651.0 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 651.2 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 651.5 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 651.8 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 652.0 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 652.2 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 652.5 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 652.8 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 653.0 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 653.2 MiB/6.4 GiB (62.3 MiB/s) with 2 file(s) remaining
Completed 653.5 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 653.8 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 654.0 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 654.2 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 654.5 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 654.8 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 655.0 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 655.2 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 655.5 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 655.8 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 656.0 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 656.2 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 656.5 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 656.8 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 657.0 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 657.2 MiB/6.4 GiB (62.5 MiB/s) with 2 file(s) remaining
Completed 657.5 MiB/6.4 GiB (62.4 MiB/s) with 2 file(s) remaining
Completed 657.8 MiB/6.4 GiB (62.5 MiB/s) with 2 file(s) remaining
Completed 658.0 MiB/6.4 GiB (62.5 MiB/s) with 2 file(s) remaining
Completed 658.2 MiB/6.4 GiB (62.5 MiB/s) with 2 file(s) remaining
Completed 658.5 MiB/6.4 GiB (62.5 MiB/s) with 2 file(s) remaining
Completed 658.8 MiB/6.4 GiB (62.5 MiB/s) with 2 file(s) remaining
Completed 659.0 MiB/6.4 GiB (62.5 MiB/s) with 2 file(s) remaining
Completed 659.2 MiB/6.4 GiB (62.5 MiB/s) with 2 file(s) remaining
Completed 659.5 MiB/6.4 GiB (62.5 MiB/s) with 2 file(s) remaining
Completed 659.8 MiB/6.4 GiB (62.5 MiB/s) with 2 file(s) remaining
Completed 660.0 MiB/6.4 GiB (62.5 MiB/s) with 2 file(s) remaining
Completed 660.2 MiB/6.4 GiB (62.5 MiB/s) with 2 file(s) remaining
Completed 660.5 MiB/6.4 GiB (62.6 MiB/s) with 2 file(s) remaining
Completed 660.8 MiB/6.4 GiB (62.6 MiB/s) with 2 file(s) remaining
Completed 661.0 MiB/6.4 GiB (62.6 MiB/s) with 2 file(s) remaining
Completed 661.2 MiB/6.4 GiB (62.6 MiB/s) with 2 file(s) remaining
Completed 661.5 MiB/6.4 GiB (62.6 MiB/s) with 2 file(s) remaining
Completed 661.8 MiB/6.4 GiB (62.6 MiB/s) with 2 file(s) remaining
Completed 662.0 MiB/6.4 GiB (62.6 MiB/s) with 2 file(s) remaining
Completed 662.2 MiB/6.4 GiB (62.6 MiB/s) with 2 file(s) remaining
Completed 662.5 MiB/6.4 GiB (62.6 MiB/s) with 2 file(s) remaining
Completed 662.8 MiB/6.4 GiB (62.6 MiB/s) with 2 file(s) remaining
Completed 663.0 MiB/6.4 GiB (62.6 MiB/s) with 2 file(s) remaining
Completed 663.2 MiB/6.4 GiB (62.6 MiB/s) with 2 file(s) remaining
Completed 663.5 MiB/6.4 GiB (62.6 MiB/s) with 2 file(s) remaining
Completed 663.8 MiB/6.4 GiB (62.6 MiB/s) with 2 file(s) remaining
Completed 664.0 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 664.2 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 664.5 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 664.8 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 665.0 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 665.2 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 665.5 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 665.8 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 666.0 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 666.2 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 666.5 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 666.8 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 667.0 MiB/6.4 GiB (62.6 MiB/s) with 2 file(s) remaining
Completed 667.2 MiB/6.4 GiB (62.6 MiB/s) with 2 file(s) remaining
Completed 667.5 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 667.8 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 668.0 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 668.2 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 668.5 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 668.8 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 669.0 MiB/6.4 GiB (62.6 MiB/s) with 2 file(s) remaining
Completed 669.2 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 669.5 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 669.8 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 670.0 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 670.2 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 670.5 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 670.8 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 671.0 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 671.2 MiB/6.4 GiB (62.6 MiB/s) with 2 file(s) remaining
Completed 671.5 MiB/6.4 GiB (62.6 MiB/s) with 2 file(s) remaining
Completed 671.8 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 672.0 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 672.2 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 672.5 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 672.8 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 673.0 MiB/6.4 GiB (62.6 MiB/s) with 2 file(s) remaining
Completed 673.2 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 673.5 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 673.8 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 674.0 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 674.2 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 674.5 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 674.8 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 675.0 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 675.2 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 675.5 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 675.8 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 676.0 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 676.2 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 676.5 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 676.8 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 677.0 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 677.2 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 677.5 MiB/6.4 GiB (62.6 MiB/s) with 2 file(s) remaining
Completed 677.8 MiB/6.4 GiB (62.6 MiB/s) with 2 file(s) remaining
Completed 678.0 MiB/6.4 GiB (62.6 MiB/s) with 2 file(s) remaining
Completed 678.2 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 678.5 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 678.8 MiB/6.4 GiB (62.6 MiB/s) with 2 file(s) remaining
Completed 679.0 MiB/6.4 GiB (62.6 MiB/s) with 2 file(s) remaining
Completed 679.2 MiB/6.4 GiB (62.6 MiB/s) with 2 file(s) remaining
Completed 679.5 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 679.8 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 680.0 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 680.2 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 680.5 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 680.8 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 681.0 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 681.2 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 681.5 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 681.8 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 682.0 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 682.2 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 682.5 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 682.8 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 683.0 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 683.2 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 683.5 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 683.8 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 684.0 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 684.2 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 684.5 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 684.8 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 685.0 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 685.2 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 685.5 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 685.8 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 686.0 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 686.2 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 686.5 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 686.8 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 687.0 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 687.2 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 687.5 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 687.8 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 688.0 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 688.2 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 688.5 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 688.8 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 689.0 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 689.2 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 689.5 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 689.8 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 690.0 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 690.2 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 690.5 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 690.8 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 691.0 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 691.2 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 691.5 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 691.8 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 692.0 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 692.2 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 692.5 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 692.8 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 693.0 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 693.2 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 693.5 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 693.8 MiB/6.4 GiB (62.7 MiB/s) with 2 file(s) remaining
Completed 694.0 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 694.2 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 694.5 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 694.8 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 695.0 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 695.2 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 695.5 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 695.8 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 696.0 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 696.2 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 696.5 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 696.8 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 697.0 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 697.2 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 697.5 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 697.8 MiB/6.4 GiB (62.9 MiB/s) with 2 file(s) remaining
Completed 698.0 MiB/6.4 GiB (62.9 MiB/s) with 2 file(s) remaining
Completed 698.2 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 698.5 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 698.8 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 699.0 MiB/6.4 GiB (62.9 MiB/s) with 2 file(s) remaining
Completed 699.2 MiB/6.4 GiB (62.9 MiB/s) with 2 file(s) remaining
Completed 699.5 MiB/6.4 GiB (62.9 MiB/s) with 2 file(s) remaining
Completed 699.8 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 700.0 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 700.2 MiB/6.4 GiB (62.9 MiB/s) with 2 file(s) remaining
Completed 700.5 MiB/6.4 GiB (62.9 MiB/s) with 2 file(s) remaining
Completed 700.8 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 701.0 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 701.2 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 701.5 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 701.8 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 702.0 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 702.2 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 702.5 MiB/6.4 GiB (62.9 MiB/s) with 2 file(s) remaining
Completed 702.8 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 703.0 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 703.2 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 703.5 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 703.8 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 704.0 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 704.2 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 704.5 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 704.8 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 705.0 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 705.2 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 705.5 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 705.8 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 706.0 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 706.2 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 706.5 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 706.8 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 707.0 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 707.2 MiB/6.4 GiB (62.9 MiB/s) with 2 file(s) remaining
Completed 707.5 MiB/6.4 GiB (62.9 MiB/s) with 2 file(s) remaining
Completed 707.8 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 708.0 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 708.2 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 708.5 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 708.8 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 709.0 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 709.2 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 709.5 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 709.8 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 710.0 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 710.2 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 710.5 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 710.8 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 711.0 MiB/6.4 GiB (62.9 MiB/s) with 2 file(s) remaining
Completed 711.2 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 711.5 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 711.8 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 712.0 MiB/6.4 GiB (62.9 MiB/s) with 2 file(s) remaining
Completed 712.2 MiB/6.4 GiB (62.9 MiB/s) with 2 file(s) remaining
Completed 712.5 MiB/6.4 GiB (62.9 MiB/s) with 2 file(s) remaining
Completed 712.8 MiB/6.4 GiB (62.9 MiB/s) with 2 file(s) remaining
Completed 713.0 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 713.2 MiB/6.4 GiB (62.8 MiB/s) with 2 file(s) remaining
Completed 713.5 MiB/6.4 GiB (62.9 MiB/s) with 2 file(s) remaining
Completed 713.8 MiB/6.4 GiB (62.9 MiB/s) with 2 file(s) remaining
Completed 714.0 MiB/6.4 GiB (62.9 MiB/s) with 2 file(s) remaining
Completed 714.2 MiB/6.4 GiB (62.9 MiB/s) with 2 file(s) remaining
Completed 714.5 MiB/6.4 GiB (62.9 MiB/s) with 2 file(s) remaining
Completed 714.8 MiB/6.4 GiB (62.9 MiB/s) with 2 file(s) remaining
Completed 715.0 MiB/6.4 GiB (62.9 MiB/s) with 2 file(s) remaining
Completed 715.2 MiB/6.4 GiB (62.9 MiB/s) with 2 file(s) remaining
Completed 715.5 MiB/6.4 GiB (62.9 MiB/s) with 2 file(s) remaining
Completed 715.8 MiB/6.4 GiB (62.9 MiB/s) with 2 file(s) remaining
Completed 716.0 MiB/6.4 GiB (62.9 MiB/s) with 2 file(s) remaining
Completed 716.2 MiB/6.4 GiB (63.0 MiB/s) with 2 file(s) remaining
Completed 716.5 MiB/6.4 GiB (62.9 MiB/s) with 2 file(s) remaining
Completed 716.8 MiB/6.4 GiB (62.9 MiB/s) with 2 file(s) remaining
Completed 717.0 MiB/6.4 GiB (62.9 MiB/s) with 2 file(s) remaining
Completed 717.2 MiB/6.4 GiB (62.9 MiB/s) with 2 file(s) remaining
Completed 717.5 MiB/6.4 GiB (62.9 MiB/s) with 2 file(s) remaining
Completed 717.8 MiB/6.4 GiB (62.9 MiB/s) with 2 file(s) remaining
Completed 718.0 MiB/6.4 GiB (62.9 MiB/s) with 2 file(s) remaining
Completed 718.2 MiB/6.4 GiB (62.9 MiB/s) with 2 file(s) remaining
Completed 718.5 MiB/6.4 GiB (62.9 MiB/s) with 2 file(s) remaining
Completed 718.8 MiB/6.4 GiB (62.9 MiB/s) with 2 file(s) remaining
Completed 719.0 MiB/6.4 GiB (62.9 MiB/s) with 2 file(s) remaining
Completed 719.2 MiB/6.4 GiB (62.9 MiB/s) with 2 file(s) remaining
Completed 719.5 MiB/6.4 GiB (62.9 MiB/s) with 2 file(s) remaining
Completed 719.8 MiB/6.4 GiB (62.9 MiB/s) with 2 file(s) remaining
Completed 720.0 MiB/6.4 GiB (62.9 MiB/s) with 2 file(s) remaining
Completed 720.2 MiB/6.4 GiB (62.9 MiB/s) with 2 file(s) remaining
Completed 720.5 MiB/6.4 GiB (62.9 MiB/s) with 2 file(s) remaining
Completed 720.8 MiB/6.4 GiB (62.9 MiB/s) with 2 file(s) remaining
Completed 721.0 MiB/6.4 GiB (62.9 MiB/s) with 2 file(s) remaining
Completed 721.2 MiB/6.4 GiB (63.0 MiB/s) with 2 file(s) remaining
Completed 721.5 MiB/6.4 GiB (63.0 MiB/s) with 2 file(s) remaining
Completed 721.8 MiB/6.4 GiB (62.9 MiB/s) with 2 file(s) remaining
Completed 722.0 MiB/6.4 GiB (63.0 MiB/s) with 2 file(s) remaining
Completed 722.2 MiB/6.4 GiB (63.0 MiB/s) with 2 file(s) remaining
Completed 722.5 MiB/6.4 GiB (62.9 MiB/s) with 2 file(s) remaining
Completed 722.8 MiB/6.4 GiB (62.9 MiB/s) with 2 file(s) remaining
Completed 723.0 MiB/6.4 GiB (63.0 MiB/s) with 2 file(s) remaining
Completed 723.2 MiB/6.4 GiB (63.0 MiB/s) with 2 file(s) remaining
Completed 723.5 MiB/6.4 GiB (63.0 MiB/s) with 2 file(s) remaining
Completed 723.8 MiB/6.4 GiB (63.0 MiB/s) with 2 file(s) remaining
Completed 724.0 MiB/6.4 GiB (63.0 MiB/s) with 2 file(s) remaining
Completed 724.2 MiB/6.4 GiB (63.0 MiB/s) with 2 file(s) remaining
Completed 724.5 MiB/6.4 GiB (63.0 MiB/s) with 2 file(s) remaining
Completed 724.8 MiB/6.4 GiB (63.0 MiB/s) with 2 file(s) remaining
Completed 725.0 MiB/6.4 GiB (63.0 MiB/s) with 2 file(s) remaining
Completed 725.2 MiB/6.4 GiB (63.0 MiB/s) with 2 file(s) remaining
Completed 725.5 MiB/6.4 GiB (63.0 MiB/s) with 2 file(s) remaining
Completed 725.8 MiB/6.4 GiB (63.0 MiB/s) with 2 file(s) remaining
Completed 726.0 MiB/6.4 GiB (63.0 MiB/s) with 2 file(s) remaining
Completed 726.2 MiB/6.4 GiB (63.0 MiB/s) with 2 file(s) remaining
Completed 726.5 MiB/6.4 GiB (63.0 MiB/s) with 2 file(s) remaining
Completed 726.8 MiB/6.4 GiB (63.0 MiB/s) with 2 file(s) remaining
Completed 727.0 MiB/6.4 GiB (63.0 MiB/s) with 2 file(s) remaining
Completed 727.2 MiB/6.4 GiB (63.1 MiB/s) with 2 file(s) remaining
Completed 727.5 MiB/6.4 GiB (63.1 MiB/s) with 2 file(s) remaining
Completed 727.8 MiB/6.4 GiB (63.1 MiB/s) with 2 file(s) remaining
Completed 728.0 MiB/6.4 GiB (63.1 MiB/s) with 2 file(s) remaining
Completed 728.2 MiB/6.4 GiB (63.1 MiB/s) with 2 file(s) remaining
Completed 728.5 MiB/6.4 GiB (63.1 MiB/s) with 2 file(s) remaining
Completed 728.8 MiB/6.4 GiB (63.1 MiB/s) with 2 file(s) remaining
Completed 729.0 MiB/6.4 GiB (63.1 MiB/s) with 2 file(s) remaining
Completed 729.2 MiB/6.4 GiB (63.1 MiB/s) with 2 file(s) remaining
Completed 729.5 MiB/6.4 GiB (63.1 MiB/s) with 2 file(s) remaining
Completed 729.8 MiB/6.4 GiB (63.1 MiB/s) with 2 file(s) remaining
Completed 730.0 MiB/6.4 GiB (63.1 MiB/s) with 2 file(s) remaining
Completed 730.2 MiB/6.4 GiB (63.1 MiB/s) with 2 file(s) remaining
Completed 730.5 MiB/6.4 GiB (63.1 MiB/s) with 2 file(s) remaining
Completed 730.8 MiB/6.4 GiB (63.1 MiB/s) with 2 file(s) remaining
Completed 731.0 MiB/6.4 GiB (63.1 MiB/s) with 2 file(s) remaining
Completed 731.2 MiB/6.4 GiB (63.1 MiB/s) with 2 file(s) remaining
Completed 731.5 MiB/6.4 GiB (63.1 MiB/s) with 2 file(s) remaining
Completed 731.8 MiB/6.4 GiB (63.1 MiB/s) with 2 file(s) remaining
Completed 732.0 MiB/6.4 GiB (63.1 MiB/s) with 2 file(s) remaining
Completed 732.2 MiB/6.4 GiB (63.1 MiB/s) with 2 file(s) remaining
Completed 732.5 MiB/6.4 GiB (63.1 MiB/s) with 2 file(s) remaining
Completed 732.8 MiB/6.4 GiB (63.1 MiB/s) with 2 file(s) remaining
Completed 733.0 MiB/6.4 GiB (63.1 MiB/s) with 2 file(s) remaining
Completed 733.2 MiB/6.4 GiB (63.1 MiB/s) with 2 file(s) remaining
Completed 733.5 MiB/6.4 GiB (63.1 MiB/s) with 2 file(s) remaining
Completed 733.8 MiB/6.4 GiB (63.1 MiB/s) with 2 file(s) remaining
Completed 734.0 MiB/6.4 GiB (63.1 MiB/s) with 2 file(s) remaining
Completed 734.2 MiB/6.4 GiB (63.1 MiB/s) with 2 file(s) remaining
Completed 734.5 MiB/6.4 GiB (63.1 MiB/s) with 2 file(s) remaining
Completed 734.8 MiB/6.4 GiB (63.1 MiB/s) with 2 file(s) remaining
Completed 735.0 MiB/6.4 GiB (63.1 MiB/s) with 2 file(s) remaining
Completed 735.2 MiB/6.4 GiB (63.1 MiB/s) with 2 file(s) remaining
Completed 735.5 MiB/6.4 GiB (63.1 MiB/s) with 2 file(s) remaining
Completed 735.8 MiB/6.4 GiB (63.1 MiB/s) with 2 file(s) remaining
Completed 736.0 MiB/6.4 GiB (63.1 MiB/s) with 2 file(s) remaining
Completed 736.2 MiB/6.4 GiB (63.1 MiB/s) with 2 file(s) remaining
Completed 736.5 MiB/6.4 GiB (63.1 MiB/s) with 2 file(s) remaining
Completed 736.8 MiB/6.4 GiB (63.1 MiB/s) with 2 file(s) remaining
Completed 737.0 MiB/6.4 GiB (63.1 MiB/s) with 2 file(s) remaining
Completed 737.2 MiB/6.4 GiB (63.1 MiB/s) with 2 file(s) remaining
Completed 737.5 MiB/6.4 GiB (63.1 MiB/s) with 2 file(s) remaining
Completed 737.8 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 738.0 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 738.2 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 738.5 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 738.8 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 739.0 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 739.2 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 739.5 MiB/6.4 GiB (63.1 MiB/s) with 2 file(s) remaining
Completed 739.8 MiB/6.4 GiB (63.1 MiB/s) with 2 file(s) remaining
Completed 740.0 MiB/6.4 GiB (63.1 MiB/s) with 2 file(s) remaining
Completed 740.2 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 740.5 MiB/6.4 GiB (63.1 MiB/s) with 2 file(s) remaining
Completed 740.8 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 741.0 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 741.2 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 741.5 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 741.8 MiB/6.4 GiB (63.1 MiB/s) with 2 file(s) remaining
Completed 742.0 MiB/6.4 GiB (63.1 MiB/s) with 2 file(s) remaining
Completed 742.2 MiB/6.4 GiB (63.1 MiB/s) with 2 file(s) remaining
Completed 742.5 MiB/6.4 GiB (63.1 MiB/s) with 2 file(s) remaining
Completed 742.8 MiB/6.4 GiB (63.1 MiB/s) with 2 file(s) remaining
Completed 743.0 MiB/6.4 GiB (63.1 MiB/s) with 2 file(s) remaining
Completed 743.2 MiB/6.4 GiB (63.1 MiB/s) with 2 file(s) remaining
Completed 743.5 MiB/6.4 GiB (63.1 MiB/s) with 2 file(s) remaining
Completed 743.8 MiB/6.4 GiB (63.1 MiB/s) with 2 file(s) remaining
Completed 744.0 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 744.2 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 744.5 MiB/6.4 GiB (63.1 MiB/s) with 2 file(s) remaining
Completed 744.8 MiB/6.4 GiB (63.1 MiB/s) with 2 file(s) remaining
Completed 745.0 MiB/6.4 GiB (63.1 MiB/s) with 2 file(s) remaining
Completed 745.2 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 745.5 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 745.8 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 746.0 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 746.2 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 746.5 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 746.8 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 747.0 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 747.2 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 747.5 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 747.8 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 748.0 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 748.2 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 748.5 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 748.8 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 749.0 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 749.2 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 749.5 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 749.8 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 750.0 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 750.2 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 750.5 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 750.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 751.0 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 751.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 751.5 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 751.8 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 752.0 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 752.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 752.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 752.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 753.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 753.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 753.5 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 753.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 754.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 754.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 754.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 754.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 755.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 755.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 755.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 755.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 756.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 756.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 756.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 756.8 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 757.0 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 757.2 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 757.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 757.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 758.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 758.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 758.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 758.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 759.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 759.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 759.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 759.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 760.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 760.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 760.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 760.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 761.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 761.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 761.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 761.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 762.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 762.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 762.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 762.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 763.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 763.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 763.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 763.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 764.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 764.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 764.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 764.8 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 765.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 765.2 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 765.5 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 765.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 766.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 766.2 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 766.5 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 766.8 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 767.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 767.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 767.5 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 767.8 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 768.0 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 768.2 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 768.5 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 768.8 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 769.0 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 769.2 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 769.5 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 769.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 770.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 770.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 770.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 770.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 771.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 771.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 771.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 771.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 772.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 772.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 772.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 772.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 773.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 773.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 773.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 773.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 774.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 774.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 774.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 774.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 775.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 775.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 775.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 775.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 776.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 776.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 776.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 776.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 777.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 777.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 777.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 777.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 778.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 778.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 778.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 778.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 779.0 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 779.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 779.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 779.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 780.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 780.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 780.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 780.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 781.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 781.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 781.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 781.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 782.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 782.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 782.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 782.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 783.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 783.2 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 783.5 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 783.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 784.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 784.2 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 784.5 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 784.8 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 785.0 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 785.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 785.5 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 785.8 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 786.0 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 786.2 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 786.5 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 786.8 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 787.0 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 787.2 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 787.5 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 787.8 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 788.0 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 788.2 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 788.5 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 788.8 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 789.0 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 789.2 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 789.5 MiB/6.4 GiB (63.1 MiB/s) with 2 file(s) remaining
Completed 789.8 MiB/6.4 GiB (63.1 MiB/s) with 2 file(s) remaining
Completed 790.0 MiB/6.4 GiB (63.1 MiB/s) with 2 file(s) remaining
Completed 790.2 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 790.5 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 790.8 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 791.0 MiB/6.4 GiB (63.1 MiB/s) with 2 file(s) remaining
Completed 791.2 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 791.5 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 791.8 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 792.0 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 792.2 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 792.5 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 792.8 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 793.0 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 793.2 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 793.5 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 793.8 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 794.0 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 794.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 794.5 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 794.8 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 795.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 795.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 795.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 795.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 796.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 796.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 796.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 796.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 797.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 797.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 797.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 797.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 798.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 798.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 798.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 798.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 799.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 799.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 799.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 799.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 800.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 800.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 800.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 800.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 801.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 801.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 801.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 801.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 802.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 802.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 802.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 802.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 803.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 803.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 803.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 803.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 804.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 804.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 804.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 804.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 805.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 805.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 805.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 805.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 806.0 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 806.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 806.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 806.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 807.0 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 807.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 807.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 807.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 808.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 808.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 808.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 808.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 809.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 809.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 809.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 809.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 810.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 810.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 810.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 810.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 811.0 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 811.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 811.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 811.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 812.0 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 812.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 812.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 812.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 813.0 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 813.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 813.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 813.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 814.0 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 814.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 814.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 814.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 815.0 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 815.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 815.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 815.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 816.0 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 816.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 816.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 816.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 817.0 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 817.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 817.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 817.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 818.0 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 818.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 818.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 818.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 819.0 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 819.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 819.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 819.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 820.0 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 820.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 820.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 820.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 821.0 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 821.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 821.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 821.8 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 822.0 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 822.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 822.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 822.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 823.0 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 823.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 823.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 823.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 824.0 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 824.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 824.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 824.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 825.0 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 825.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 825.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 825.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 826.0 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 826.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 826.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 826.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 827.0 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 827.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 827.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 827.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 828.0 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 828.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 828.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 828.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 829.0 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 829.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 829.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 829.8 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 830.0 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 830.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 830.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 830.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 831.0 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 831.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 831.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 831.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 832.0 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 832.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 832.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 832.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 833.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 833.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 833.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 833.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 834.0 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 834.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 834.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 834.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 835.0 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 835.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 835.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 835.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 836.0 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 836.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 836.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 836.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 837.0 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 837.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 837.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 837.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 838.0 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 838.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 838.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 838.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 839.0 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 839.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 839.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 839.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 840.0 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 840.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 840.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 840.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 841.0 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 841.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 841.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 841.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 842.0 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 842.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 842.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 842.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 843.0 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 843.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 843.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 843.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 844.0 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 844.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 844.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 844.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 845.0 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 845.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 845.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 845.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 846.0 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 846.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 846.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 846.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 847.0 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 847.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 847.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 847.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 848.0 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 848.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 848.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 848.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 849.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 849.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 849.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 849.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 850.0 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 850.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 850.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 850.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 851.0 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 851.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 851.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 851.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 852.0 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 852.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 852.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 852.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 853.0 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 853.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 853.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 853.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 854.0 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 854.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 854.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 854.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 855.0 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 855.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 855.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 855.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 856.0 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 856.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 856.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 856.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 857.0 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 857.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 857.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 857.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 858.0 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 858.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 858.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 858.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 859.0 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 859.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 859.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 859.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 860.0 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 860.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 860.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 860.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 861.0 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 861.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 861.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 861.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 862.0 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 862.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 862.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 862.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 863.0 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 863.2 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 863.5 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 863.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 864.0 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 864.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 864.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 864.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 865.0 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 865.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 865.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 865.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 866.0 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 866.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 866.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 866.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 867.0 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 867.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 867.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 867.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 868.0 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 868.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 868.5 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 868.8 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 869.0 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 869.2 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 869.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 869.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 870.0 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 870.2 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 870.5 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 870.8 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 871.0 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 871.2 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 871.5 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 871.8 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 872.0 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 872.2 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 872.5 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 872.8 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 873.0 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 873.2 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 873.5 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 873.8 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 874.0 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 874.2 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 874.5 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 874.8 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 875.0 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 875.2 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 875.5 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 875.8 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 876.0 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 876.2 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 876.5 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 876.8 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 877.0 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 877.2 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 877.5 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 877.8 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 878.0 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 878.2 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 878.5 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 878.8 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 879.0 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 879.2 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 879.5 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 879.8 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 880.0 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 880.2 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 880.5 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 880.8 MiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 881.0 MiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 881.2 MiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 881.5 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 881.8 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 882.0 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 882.2 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 882.5 MiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 882.8 MiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 883.0 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 883.2 MiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 883.5 MiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 883.8 MiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 884.0 MiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 884.2 MiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 884.5 MiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 884.8 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 885.0 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 885.2 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 885.5 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 885.8 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 886.0 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 886.2 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 886.5 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 886.8 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 887.0 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 887.2 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 887.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 887.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 888.0 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 888.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 888.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 888.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 889.0 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 889.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 889.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 889.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 890.0 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 890.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 890.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 890.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 891.0 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 891.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 891.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 891.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 892.0 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 892.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 892.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 892.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 893.0 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 893.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 893.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 893.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 894.0 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 894.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 894.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 894.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 895.0 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 895.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 895.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 895.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 896.0 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 896.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 896.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 896.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 897.0 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 897.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 897.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 897.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 898.0 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 898.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 898.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 898.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 899.0 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 899.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 899.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 899.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 900.0 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 900.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 900.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 900.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 901.0 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 901.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 901.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 901.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 902.0 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 902.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 902.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 902.8 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 903.0 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 903.2 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 903.5 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 903.8 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 904.0 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 904.2 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 904.5 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 904.8 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 905.0 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 905.2 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 905.5 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 905.8 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 906.0 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 906.2 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 906.5 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 906.8 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 907.0 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 907.2 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 907.5 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 907.8 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 908.0 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 908.2 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 908.5 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 908.8 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 909.0 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 909.2 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 909.5 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 909.8 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 910.0 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 910.2 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 910.5 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 910.8 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 911.0 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 911.2 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 911.5 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 911.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 912.0 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 912.2 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 912.5 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 912.8 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 913.0 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 913.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 913.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 913.8 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 914.0 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 914.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 914.5 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 914.8 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 915.0 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 915.2 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 915.5 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 915.8 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 916.0 MiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 916.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 916.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 916.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 917.0 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 917.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 917.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 917.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 918.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 918.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 918.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 918.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 919.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 919.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 919.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 919.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 920.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 920.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 920.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 920.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 921.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 921.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 921.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 921.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 922.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 922.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 922.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 922.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 923.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 923.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 923.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 923.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 924.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 924.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 924.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 924.8 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 925.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 925.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 925.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 925.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 926.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 926.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 926.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 926.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 927.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 927.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 927.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 927.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 928.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 928.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 928.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 928.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 929.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 929.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 929.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 929.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 930.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 930.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 930.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 930.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 931.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 931.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 931.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 931.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 932.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 932.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 932.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 932.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 933.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 933.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 933.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 933.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 934.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 934.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 934.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 934.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 935.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 935.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 935.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 935.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 936.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 936.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 936.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 936.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 937.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 937.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 937.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 937.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 938.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 938.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 938.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 938.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 939.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 939.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 939.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 939.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 940.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 940.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 940.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 940.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 941.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 941.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 941.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 941.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 942.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 942.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 942.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 942.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 943.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 943.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 943.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 943.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 944.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 944.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 944.5 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 944.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 945.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 945.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 945.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 945.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 946.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 946.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 946.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 946.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 947.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 947.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 947.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 947.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 948.0 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 948.2 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 948.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 948.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 949.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 949.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 949.5 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 949.8 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 950.0 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 950.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 950.5 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 950.8 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 951.0 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 951.2 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 951.5 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 951.8 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 952.0 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 952.2 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 952.5 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 952.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 953.0 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 953.2 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 953.5 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 953.8 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 954.0 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 954.2 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 954.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 954.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 955.0 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 955.2 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 955.5 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 955.8 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 956.0 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 956.2 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 956.5 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 956.8 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 957.0 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 957.2 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 957.5 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 957.8 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 958.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 958.2 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 958.5 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 958.8 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 959.0 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 959.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 959.5 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 959.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 960.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 960.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 960.5 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 960.8 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 961.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 961.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 961.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 961.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 962.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 962.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 962.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 962.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 963.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 963.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 963.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 963.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 964.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 964.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 964.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 964.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 965.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 965.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 965.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 965.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 966.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 966.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 966.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 966.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 967.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 967.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 967.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 967.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 968.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 968.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 968.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 968.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 969.0 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 969.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 969.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 969.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 970.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 970.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 970.5 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 970.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 971.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 971.2 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 971.5 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 971.8 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 972.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 972.2 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 972.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 972.8 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 973.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 973.2 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 973.5 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 973.8 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 974.0 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 974.2 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 974.5 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 974.8 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 975.0 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 975.2 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 975.5 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 975.8 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 976.0 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 976.2 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 976.5 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 976.8 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 977.0 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 977.2 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 977.5 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 977.8 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 978.0 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 978.2 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 978.5 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 978.8 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 979.0 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 979.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 979.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 979.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 980.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 980.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 980.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 980.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 981.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 981.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 981.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 981.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 982.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 982.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 982.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 982.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 983.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 983.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 983.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 983.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 984.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 984.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 984.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 984.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 985.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 985.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 985.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 985.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 986.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 986.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 986.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 986.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 987.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 987.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 987.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 987.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 988.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 988.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 988.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 988.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 989.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 989.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 989.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 989.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 990.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 990.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 990.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 990.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 991.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 991.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 991.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 991.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 992.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 992.2 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 992.5 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 992.8 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 993.0 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 993.2 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 993.5 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 993.8 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 994.0 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 994.2 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 994.5 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 994.8 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 995.0 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 995.2 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 995.5 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 995.8 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 996.0 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 996.2 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 996.5 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 996.8 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 997.0 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 997.2 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 997.5 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 997.8 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 998.0 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 998.2 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 998.5 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 998.8 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 999.0 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 999.2 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 999.5 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 999.8 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 1000.0 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 1000.2 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 1000.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 1000.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 1001.0 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 1001.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 1001.5 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 1001.8 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 1002.0 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 1002.2 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 1002.5 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 1002.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 1003.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 1003.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 1003.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 1003.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 1004.0 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 1004.2 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 1004.5 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 1004.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 1005.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 1005.2 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 1005.5 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 1005.8 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 1006.0 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 1006.2 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 1006.5 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 1006.8 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 1007.0 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 1007.2 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 1007.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 1007.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 1008.0 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 1008.2 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 1008.5 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 1008.8 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 1009.0 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 1009.2 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 1009.5 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 1009.8 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 1010.0 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 1010.2 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 1010.5 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 1010.8 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 1011.0 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 1011.2 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 1011.5 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 1011.8 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 1012.0 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 1012.2 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 1012.5 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 1012.8 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 1013.0 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 1013.2 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 1013.5 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 1013.8 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 1014.0 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 1014.2 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 1014.5 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 1014.8 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 1015.0 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 1015.2 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 1015.5 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 1015.8 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 1016.0 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 1016.2 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 1016.5 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 1016.8 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 1017.0 MiB/6.4 GiB (63.2 MiB/s) with 2 file(s) remaining
Completed 1017.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 1017.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 1017.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 1018.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 1018.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 1018.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 1018.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 1019.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 1019.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 1019.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 1019.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 1020.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 1020.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 1020.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 1020.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 1021.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 1021.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 1021.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 1021.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 1022.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 1022.2 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 1022.5 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 1022.8 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 1023.0 MiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 1023.2 MiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.3 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.4 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.5 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.0 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.6 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.7 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.0 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.0 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.0 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.0 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.0 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.0 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.0 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.0 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.0 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.0 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.0 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.0 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.0 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.0 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.0 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.0 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.0 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.0 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.0 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.0 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.0 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.0 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.0 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.0 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.0 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.8 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.0 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.0 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (63.9 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.0 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.0 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.0 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.0 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.0 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.0 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.0 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.0 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.0 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.0 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.0 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.0 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.0 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.0 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.0 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.0 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.0 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.1 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.1 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.0 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.0 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.1 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.1 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.1 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.1 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.1 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.1 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.1 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.1 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.1 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.1 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.1 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.1 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.1 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.1 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.1 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.1 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.1 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.1 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.1 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.1 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.1 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.1 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.1 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.1 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.1 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.1 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.1 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.1 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.1 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.1 MiB/s) with 2 file(s) remaining
Completed 1.1 GiB/6.4 GiB (64.1 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.1 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.1 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.1 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.1 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.1 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.1 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.1 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.1 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.1 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.1 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.1 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.1 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.1 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.1 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.1 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.1 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.1 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.1 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.1 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.1 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.1 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.1 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.1 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.1 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.1 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.1 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.1 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.1 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.1 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.1 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.1 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.1 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.1 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.1 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.3 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.3 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.3 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.3 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.3 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.3 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.3 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.3 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.3 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.3 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.3 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.3 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.3 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.3 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.3 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.3 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.3 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.3 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.3 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.3 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.3 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.3 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.3 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.3 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.3 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.3 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.2 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.3 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.3 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.3 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.3 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.3 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.3 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.3 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.3 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.3 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.3 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.3 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.3 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.3 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.3 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.3 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.3 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.3 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.3 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.3 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.3 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.3 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.3 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.3 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.3 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.3 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.3 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.3 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.3 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.3 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.4 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.4 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.4 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.4 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.4 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.4 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.4 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.4 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.4 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.4 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.4 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.4 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.4 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.4 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.4 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.4 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.4 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.4 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.4 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.4 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.4 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.4 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.4 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.4 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.4 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.4 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.4 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.4 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.4 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.4 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.4 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.4 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.4 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.4 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.4 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.4 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.4 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.4 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.4 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.4 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.4 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.4 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.4 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.4 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.4 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.4 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.4 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.4 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.4 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.4 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.5 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.2 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.3 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.6 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.4 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.7 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.5 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.8 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (64.9 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.7 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 1.9 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.0 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.2 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.3 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.4 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.5 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.6 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.7 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.8 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.0 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 2.9 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.1 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.0 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.2 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.1 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.2 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.3 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.4 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.3 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.5 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.6 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.5 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 2 file(s) remaining
download: s3://dmap-epa-prod-anotedata/RShade/Vegetation/LC22_EVH_220_reclass.tif to data/Vegetation/LC22_EVH_220_reclass.tif
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.7 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.8 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.5 MiB/s) with 1 file(s) remaining
Completed 3.9 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.4 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.3 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.2 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.0 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.1 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.1 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (65.0 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.9 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.2 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.8 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.3 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.7 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 4.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.0 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.5 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.6 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.7 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.8 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 5.9 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.0 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.1 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.2 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.3 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.6 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.5 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.4 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.3 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.2 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.2 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.2 MiB/s) with 1 file(s) remaining
Completed 6.4 GiB/6.4 GiB (64.2 MiB/s) with 1 file(s) remaining
download: s3://dmap-epa-prod-anotedata/RShade/Vegetation/LC22_ECH_220_reclass.tif to data/Vegetation/LC22_ECH_220_reclass.tif
Completed 5 Bytes/64.9 MiB (51 Bytes/s) with 8 file(s) remaining
download: s3://dmap-epa-prod-anotedata/RShade/RPU/RPU_Boundary.cpg to data/RPU/RPU_Boundary.cpg
Completed 5 Bytes/64.9 MiB (51 Bytes/s) with 7 file(s) remaining
Completed 29.9 KiB/64.9 MiB (198.4 KiB/s) with 7 file(s) remaining
Completed 30.4 KiB/64.9 MiB (195.6 KiB/s) with 7 file(s) remaining
Completed 30.9 KiB/64.9 MiB (181.0 KiB/s) with 7 file(s) remaining
download: s3://dmap-epa-prod-anotedata/RShade/RPU/RPU_Boundary.prj to data/RPU/RPU_Boundary.prj
Completed 30.9 KiB/64.9 MiB (181.0 KiB/s) with 6 file(s) remaining
download: s3://dmap-epa-prod-anotedata/RShade/RPU/RPU_Boundary.dbf to data/RPU/RPU_Boundary.dbf
Completed 30.9 KiB/64.9 MiB (181.0 KiB/s) with 5 file(s) remaining
Completed 31.1 KiB/64.9 MiB (167.4 KiB/s) with 5 file(s) remaining
Completed 45.6 KiB/64.9 MiB (245.1 KiB/s) with 5 file(s) remaining
download: s3://dmap-epa-prod-anotedata/RShade/RPU/RPU_Boundary.shx to data/RPU/RPU_Boundary.shx
Completed 45.6 KiB/64.9 MiB (245.1 KiB/s) with 4 file(s) remaining
download: s3://dmap-epa-prod-anotedata/RShade/RPU/RPU_Boundary.sbx to data/RPU/RPU_Boundary.sbx
Completed 45.6 KiB/64.9 MiB (245.1 KiB/s) with 3 file(s) remaining
download: s3://dmap-epa-prod-anotedata/RShade/RPU/RPU_Boundary.shp.xml to data/RPU/RPU_Boundary.shp.xml
Completed 45.6 KiB/64.9 MiB (245.1 KiB/s) with 2 file(s) remaining
Completed 46.4 KiB/64.9 MiB (213.9 KiB/s) with 2 file(s) remaining
download: s3://dmap-epa-prod-anotedata/RShade/RPU/RPU_Boundary.sbn to data/RPU/RPU_Boundary.sbn
Completed 46.4 KiB/64.9 MiB (213.9 KiB/s) with 1 file(s) remaining
Completed 302.4 KiB/64.9 MiB (1.0 MiB/s) with 1 file(s) remaining
Completed 558.4 KiB/64.9 MiB (1.8 MiB/s) with 1 file(s) remaining
Completed 814.4 KiB/64.9 MiB (2.6 MiB/s) with 1 file(s) remaining
Completed 1.0 MiB/64.9 MiB (3.4 MiB/s) with 1 file(s) remaining
Completed 1.3 MiB/64.9 MiB (4.2 MiB/s) with 1 file(s) remaining
Completed 1.5 MiB/64.9 MiB (5.0 MiB/s) with 1 file(s) remaining
Completed 1.8 MiB/64.9 MiB (5.7 MiB/s) with 1 file(s) remaining
Completed 2.0 MiB/64.9 MiB (6.5 MiB/s) with 1 file(s) remaining
Completed 2.3 MiB/64.9 MiB (7.2 MiB/s) with 1 file(s) remaining
Completed 2.5 MiB/64.9 MiB (7.6 MiB/s) with 1 file(s) remaining
Completed 2.8 MiB/64.9 MiB (8.3 MiB/s) with 1 file(s) remaining
Completed 3.0 MiB/64.9 MiB (8.9 MiB/s) with 1 file(s) remaining
Completed 3.3 MiB/64.9 MiB (9.7 MiB/s) with 1 file(s) remaining
Completed 3.5 MiB/64.9 MiB (10.4 MiB/s) with 1 file(s) remaining
Completed 3.8 MiB/64.9 MiB (11.1 MiB/s) with 1 file(s) remaining
Completed 4.0 MiB/64.9 MiB (11.8 MiB/s) with 1 file(s) remaining
Completed 4.3 MiB/64.9 MiB (12.2 MiB/s) with 1 file(s) remaining
Completed 4.5 MiB/64.9 MiB (12.8 MiB/s) with 1 file(s) remaining
Completed 4.8 MiB/64.9 MiB (13.5 MiB/s) with 1 file(s) remaining
Completed 5.0 MiB/64.9 MiB (14.1 MiB/s) with 1 file(s) remaining
Completed 5.3 MiB/64.9 MiB (14.8 MiB/s) with 1 file(s) remaining
Completed 5.5 MiB/64.9 MiB (15.2 MiB/s) with 1 file(s) remaining
Completed 5.8 MiB/64.9 MiB (15.4 MiB/s) with 1 file(s) remaining
Completed 6.0 MiB/64.9 MiB (15.9 MiB/s) with 1 file(s) remaining
Completed 6.3 MiB/64.9 MiB (16.3 MiB/s) with 1 file(s) remaining
Completed 6.5 MiB/64.9 MiB (16.9 MiB/s) with 1 file(s) remaining
Completed 6.8 MiB/64.9 MiB (17.5 MiB/s) with 1 file(s) remaining
Completed 7.0 MiB/64.9 MiB (18.0 MiB/s) with 1 file(s) remaining
Completed 7.3 MiB/64.9 MiB (18.4 MiB/s) with 1 file(s) remaining
Completed 7.5 MiB/64.9 MiB (18.8 MiB/s) with 1 file(s) remaining
Completed 7.8 MiB/64.9 MiB (19.4 MiB/s) with 1 file(s) remaining
Completed 8.0 MiB/64.9 MiB (19.9 MiB/s) with 1 file(s) remaining
Completed 8.3 MiB/64.9 MiB (20.3 MiB/s) with 1 file(s) remaining
Completed 8.5 MiB/64.9 MiB (20.9 MiB/s) with 1 file(s) remaining
Completed 8.8 MiB/64.9 MiB (21.5 MiB/s) with 1 file(s) remaining
Completed 9.0 MiB/64.9 MiB (22.0 MiB/s) with 1 file(s) remaining
Completed 9.3 MiB/64.9 MiB (22.6 MiB/s) with 1 file(s) remaining
Completed 9.5 MiB/64.9 MiB (23.1 MiB/s) with 1 file(s) remaining
Completed 9.8 MiB/64.9 MiB (23.7 MiB/s) with 1 file(s) remaining
Completed 10.0 MiB/64.9 MiB (24.1 MiB/s) with 1 file(s) remaining
Completed 10.3 MiB/64.9 MiB (24.7 MiB/s) with 1 file(s) remaining
Completed 10.5 MiB/64.9 MiB (25.2 MiB/s) with 1 file(s) remaining
Completed 10.8 MiB/64.9 MiB (25.7 MiB/s) with 1 file(s) remaining
Completed 11.0 MiB/64.9 MiB (26.0 MiB/s) with 1 file(s) remaining
Completed 11.3 MiB/64.9 MiB (26.4 MiB/s) with 1 file(s) remaining
Completed 11.5 MiB/64.9 MiB (27.0 MiB/s) with 1 file(s) remaining
Completed 11.8 MiB/64.9 MiB (27.2 MiB/s) with 1 file(s) remaining
Completed 12.0 MiB/64.9 MiB (27.7 MiB/s) with 1 file(s) remaining
Completed 12.3 MiB/64.9 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 12.5 MiB/64.9 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 12.8 MiB/64.9 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 13.0 MiB/64.9 MiB (29.6 MiB/s) with 1 file(s) remaining
Completed 13.3 MiB/64.9 MiB (29.7 MiB/s) with 1 file(s) remaining
Completed 13.5 MiB/64.9 MiB (30.1 MiB/s) with 1 file(s) remaining
Completed 13.8 MiB/64.9 MiB (30.6 MiB/s) with 1 file(s) remaining
Completed 14.0 MiB/64.9 MiB (31.1 MiB/s) with 1 file(s) remaining
Completed 14.3 MiB/64.9 MiB (31.5 MiB/s) with 1 file(s) remaining
Completed 14.5 MiB/64.9 MiB (32.0 MiB/s) with 1 file(s) remaining
Completed 14.8 MiB/64.9 MiB (32.5 MiB/s) with 1 file(s) remaining
Completed 15.0 MiB/64.9 MiB (32.9 MiB/s) with 1 file(s) remaining
Completed 15.3 MiB/64.9 MiB (33.1 MiB/s) with 1 file(s) remaining
Completed 15.5 MiB/64.9 MiB (32.9 MiB/s) with 1 file(s) remaining
Completed 15.8 MiB/64.9 MiB (33.0 MiB/s) with 1 file(s) remaining
Completed 16.0 MiB/64.9 MiB (33.4 MiB/s) with 1 file(s) remaining
Completed 16.3 MiB/64.9 MiB (33.9 MiB/s) with 1 file(s) remaining
Completed 16.5 MiB/64.9 MiB (34.3 MiB/s) with 1 file(s) remaining
Completed 16.8 MiB/64.9 MiB (34.6 MiB/s) with 1 file(s) remaining
Completed 17.0 MiB/64.9 MiB (35.0 MiB/s) with 1 file(s) remaining
Completed 17.3 MiB/64.9 MiB (35.4 MiB/s) with 1 file(s) remaining
Completed 17.5 MiB/64.9 MiB (35.9 MiB/s) with 1 file(s) remaining
Completed 17.8 MiB/64.9 MiB (36.1 MiB/s) with 1 file(s) remaining
Completed 18.0 MiB/64.9 MiB (36.5 MiB/s) with 1 file(s) remaining
Completed 18.3 MiB/64.9 MiB (36.9 MiB/s) with 1 file(s) remaining
Completed 18.5 MiB/64.9 MiB (37.2 MiB/s) with 1 file(s) remaining
Completed 18.8 MiB/64.9 MiB (37.5 MiB/s) with 1 file(s) remaining
Completed 19.0 MiB/64.9 MiB (37.8 MiB/s) with 1 file(s) remaining
Completed 19.3 MiB/64.9 MiB (38.2 MiB/s) with 1 file(s) remaining
Completed 19.5 MiB/64.9 MiB (38.5 MiB/s) with 1 file(s) remaining
Completed 19.8 MiB/64.9 MiB (38.9 MiB/s) with 1 file(s) remaining
Completed 19.9 MiB/64.9 MiB (39.0 MiB/s) with 1 file(s) remaining
Completed 20.1 MiB/64.9 MiB (39.4 MiB/s) with 1 file(s) remaining
Completed 20.4 MiB/64.9 MiB (39.6 MiB/s) with 1 file(s) remaining
Completed 20.6 MiB/64.9 MiB (39.5 MiB/s) with 1 file(s) remaining
Completed 20.9 MiB/64.9 MiB (39.9 MiB/s) with 1 file(s) remaining
Completed 21.1 MiB/64.9 MiB (40.3 MiB/s) with 1 file(s) remaining
Completed 21.4 MiB/64.9 MiB (40.1 MiB/s) with 1 file(s) remaining
Completed 21.6 MiB/64.9 MiB (40.5 MiB/s) with 1 file(s) remaining
Completed 21.9 MiB/64.9 MiB (40.9 MiB/s) with 1 file(s) remaining
Completed 22.1 MiB/64.9 MiB (41.1 MiB/s) with 1 file(s) remaining
Completed 22.4 MiB/64.9 MiB (41.5 MiB/s) with 1 file(s) remaining
Completed 22.6 MiB/64.9 MiB (41.6 MiB/s) with 1 file(s) remaining
Completed 22.9 MiB/64.9 MiB (42.0 MiB/s) with 1 file(s) remaining
Completed 23.1 MiB/64.9 MiB (42.1 MiB/s) with 1 file(s) remaining
Completed 23.4 MiB/64.9 MiB (42.3 MiB/s) with 1 file(s) remaining
Completed 23.6 MiB/64.9 MiB (42.6 MiB/s) with 1 file(s) remaining
Completed 23.9 MiB/64.9 MiB (42.6 MiB/s) with 1 file(s) remaining
Completed 24.1 MiB/64.9 MiB (43.0 MiB/s) with 1 file(s) remaining
Completed 24.4 MiB/64.9 MiB (43.2 MiB/s) with 1 file(s) remaining
Completed 24.6 MiB/64.9 MiB (43.1 MiB/s) with 1 file(s) remaining
Completed 24.9 MiB/64.9 MiB (43.4 MiB/s) with 1 file(s) remaining
Completed 25.1 MiB/64.9 MiB (43.7 MiB/s) with 1 file(s) remaining
Completed 25.4 MiB/64.9 MiB (43.2 MiB/s) with 1 file(s) remaining
Completed 25.6 MiB/64.9 MiB (43.6 MiB/s) with 1 file(s) remaining
Completed 25.9 MiB/64.9 MiB (43.9 MiB/s) with 1 file(s) remaining
Completed 26.1 MiB/64.9 MiB (44.1 MiB/s) with 1 file(s) remaining
Completed 26.4 MiB/64.9 MiB (44.4 MiB/s) with 1 file(s) remaining
Completed 26.6 MiB/64.9 MiB (44.7 MiB/s) with 1 file(s) remaining
Completed 26.9 MiB/64.9 MiB (45.0 MiB/s) with 1 file(s) remaining
Completed 27.1 MiB/64.9 MiB (45.0 MiB/s) with 1 file(s) remaining
Completed 27.4 MiB/64.9 MiB (45.3 MiB/s) with 1 file(s) remaining
Completed 27.6 MiB/64.9 MiB (45.1 MiB/s) with 1 file(s) remaining
Completed 27.9 MiB/64.9 MiB (45.4 MiB/s) with 1 file(s) remaining
Completed 28.1 MiB/64.9 MiB (45.7 MiB/s) with 1 file(s) remaining
Completed 28.4 MiB/64.9 MiB (46.1 MiB/s) with 1 file(s) remaining
Completed 28.6 MiB/64.9 MiB (46.0 MiB/s) with 1 file(s) remaining
Completed 28.9 MiB/64.9 MiB (45.9 MiB/s) with 1 file(s) remaining
Completed 29.1 MiB/64.9 MiB (46.2 MiB/s) with 1 file(s) remaining
Completed 29.4 MiB/64.9 MiB (46.5 MiB/s) with 1 file(s) remaining
Completed 29.6 MiB/64.9 MiB (46.5 MiB/s) with 1 file(s) remaining
Completed 29.9 MiB/64.9 MiB (46.8 MiB/s) with 1 file(s) remaining
Completed 30.1 MiB/64.9 MiB (47.1 MiB/s) with 1 file(s) remaining
Completed 30.4 MiB/64.9 MiB (47.2 MiB/s) with 1 file(s) remaining
Completed 30.6 MiB/64.9 MiB (47.2 MiB/s) with 1 file(s) remaining
Completed 30.9 MiB/64.9 MiB (47.6 MiB/s) with 1 file(s) remaining
Completed 31.1 MiB/64.9 MiB (47.8 MiB/s) with 1 file(s) remaining
Completed 31.4 MiB/64.9 MiB (47.7 MiB/s) with 1 file(s) remaining
Completed 31.6 MiB/64.9 MiB (47.9 MiB/s) with 1 file(s) remaining
Completed 31.9 MiB/64.9 MiB (47.4 MiB/s) with 1 file(s) remaining
Completed 32.1 MiB/64.9 MiB (47.6 MiB/s) with 1 file(s) remaining
Completed 32.4 MiB/64.9 MiB (47.7 MiB/s) with 1 file(s) remaining
Completed 32.6 MiB/64.9 MiB (48.0 MiB/s) with 1 file(s) remaining
Completed 32.9 MiB/64.9 MiB (48.2 MiB/s) with 1 file(s) remaining
Completed 33.1 MiB/64.9 MiB (48.1 MiB/s) with 1 file(s) remaining
Completed 33.4 MiB/64.9 MiB (48.4 MiB/s) with 1 file(s) remaining
Completed 33.6 MiB/64.9 MiB (48.5 MiB/s) with 1 file(s) remaining
Completed 33.9 MiB/64.9 MiB (48.5 MiB/s) with 1 file(s) remaining
Completed 34.1 MiB/64.9 MiB (48.8 MiB/s) with 1 file(s) remaining
Completed 34.4 MiB/64.9 MiB (49.0 MiB/s) with 1 file(s) remaining
Completed 34.6 MiB/64.9 MiB (49.3 MiB/s) with 1 file(s) remaining
Completed 34.9 MiB/64.9 MiB (49.1 MiB/s) with 1 file(s) remaining
Completed 35.1 MiB/64.9 MiB (49.4 MiB/s) with 1 file(s) remaining
Completed 35.4 MiB/64.9 MiB (49.5 MiB/s) with 1 file(s) remaining
Completed 35.6 MiB/64.9 MiB (49.8 MiB/s) with 1 file(s) remaining
Completed 35.9 MiB/64.9 MiB (50.0 MiB/s) with 1 file(s) remaining
Completed 36.1 MiB/64.9 MiB (50.2 MiB/s) with 1 file(s) remaining
Completed 36.4 MiB/64.9 MiB (49.8 MiB/s) with 1 file(s) remaining
Completed 36.6 MiB/64.9 MiB (50.1 MiB/s) with 1 file(s) remaining
Completed 36.9 MiB/64.9 MiB (50.1 MiB/s) with 1 file(s) remaining
Completed 37.1 MiB/64.9 MiB (50.0 MiB/s) with 1 file(s) remaining
Completed 37.4 MiB/64.9 MiB (50.3 MiB/s) with 1 file(s) remaining
Completed 37.6 MiB/64.9 MiB (49.7 MiB/s) with 1 file(s) remaining
Completed 37.9 MiB/64.9 MiB (50.0 MiB/s) with 1 file(s) remaining
Completed 38.1 MiB/64.9 MiB (50.3 MiB/s) with 1 file(s) remaining
Completed 38.4 MiB/64.9 MiB (50.2 MiB/s) with 1 file(s) remaining
Completed 38.6 MiB/64.9 MiB (50.5 MiB/s) with 1 file(s) remaining
Completed 38.9 MiB/64.9 MiB (50.6 MiB/s) with 1 file(s) remaining
Completed 39.1 MiB/64.9 MiB (50.8 MiB/s) with 1 file(s) remaining
Completed 39.4 MiB/64.9 MiB (50.9 MiB/s) with 1 file(s) remaining
Completed 39.6 MiB/64.9 MiB (50.7 MiB/s) with 1 file(s) remaining
Completed 39.9 MiB/64.9 MiB (50.6 MiB/s) with 1 file(s) remaining
Completed 40.1 MiB/64.9 MiB (50.9 MiB/s) with 1 file(s) remaining
Completed 40.4 MiB/64.9 MiB (51.1 MiB/s) with 1 file(s) remaining
Completed 40.6 MiB/64.9 MiB (50.7 MiB/s) with 1 file(s) remaining
Completed 40.9 MiB/64.9 MiB (50.9 MiB/s) with 1 file(s) remaining
Completed 41.1 MiB/64.9 MiB (51.1 MiB/s) with 1 file(s) remaining
Completed 41.4 MiB/64.9 MiB (51.0 MiB/s) with 1 file(s) remaining
Completed 41.6 MiB/64.9 MiB (51.2 MiB/s) with 1 file(s) remaining
Completed 41.9 MiB/64.9 MiB (51.5 MiB/s) with 1 file(s) remaining
Completed 42.1 MiB/64.9 MiB (50.9 MiB/s) with 1 file(s) remaining
Completed 42.4 MiB/64.9 MiB (51.1 MiB/s) with 1 file(s) remaining
Completed 42.6 MiB/64.9 MiB (50.9 MiB/s) with 1 file(s) remaining
Completed 42.9 MiB/64.9 MiB (51.0 MiB/s) with 1 file(s) remaining
Completed 43.1 MiB/64.9 MiB (51.0 MiB/s) with 1 file(s) remaining
Completed 43.4 MiB/64.9 MiB (51.1 MiB/s) with 1 file(s) remaining
Completed 43.6 MiB/64.9 MiB (50.5 MiB/s) with 1 file(s) remaining
Completed 43.9 MiB/64.9 MiB (50.7 MiB/s) with 1 file(s) remaining
Completed 44.1 MiB/64.9 MiB (50.7 MiB/s) with 1 file(s) remaining
Completed 44.4 MiB/64.9 MiB (50.8 MiB/s) with 1 file(s) remaining
Completed 44.6 MiB/64.9 MiB (50.6 MiB/s) with 1 file(s) remaining
Completed 44.9 MiB/64.9 MiB (50.5 MiB/s) with 1 file(s) remaining
Completed 45.1 MiB/64.9 MiB (50.4 MiB/s) with 1 file(s) remaining
Completed 45.4 MiB/64.9 MiB (50.5 MiB/s) with 1 file(s) remaining
Completed 45.6 MiB/64.9 MiB (50.1 MiB/s) with 1 file(s) remaining
Completed 45.9 MiB/64.9 MiB (50.2 MiB/s) with 1 file(s) remaining
Completed 46.1 MiB/64.9 MiB (50.3 MiB/s) with 1 file(s) remaining
Completed 46.4 MiB/64.9 MiB (50.5 MiB/s) with 1 file(s) remaining
Completed 46.6 MiB/64.9 MiB (50.4 MiB/s) with 1 file(s) remaining
Completed 46.9 MiB/64.9 MiB (50.5 MiB/s) with 1 file(s) remaining
Completed 47.1 MiB/64.9 MiB (50.7 MiB/s) with 1 file(s) remaining
Completed 47.4 MiB/64.9 MiB (50.6 MiB/s) with 1 file(s) remaining
Completed 47.6 MiB/64.9 MiB (50.8 MiB/s) with 1 file(s) remaining
Completed 47.9 MiB/64.9 MiB (50.2 MiB/s) with 1 file(s) remaining
Completed 48.1 MiB/64.9 MiB (50.1 MiB/s) with 1 file(s) remaining
Completed 48.4 MiB/64.9 MiB (49.9 MiB/s) with 1 file(s) remaining
Completed 48.6 MiB/64.9 MiB (50.1 MiB/s) with 1 file(s) remaining
Completed 48.9 MiB/64.9 MiB (50.2 MiB/s) with 1 file(s) remaining
Completed 49.1 MiB/64.9 MiB (50.1 MiB/s) with 1 file(s) remaining
Completed 49.4 MiB/64.9 MiB (50.0 MiB/s) with 1 file(s) remaining
Completed 49.6 MiB/64.9 MiB (50.1 MiB/s) with 1 file(s) remaining
Completed 49.9 MiB/64.9 MiB (49.8 MiB/s) with 1 file(s) remaining
Completed 50.1 MiB/64.9 MiB (49.9 MiB/s) with 1 file(s) remaining
Completed 50.4 MiB/64.9 MiB (49.9 MiB/s) with 1 file(s) remaining
Completed 50.6 MiB/64.9 MiB (49.8 MiB/s) with 1 file(s) remaining
Completed 50.9 MiB/64.9 MiB (49.8 MiB/s) with 1 file(s) remaining
Completed 51.1 MiB/64.9 MiB (49.5 MiB/s) with 1 file(s) remaining
Completed 51.4 MiB/64.9 MiB (49.5 MiB/s) with 1 file(s) remaining
Completed 51.6 MiB/64.9 MiB (49.5 MiB/s) with 1 file(s) remaining
Completed 51.9 MiB/64.9 MiB (49.7 MiB/s) with 1 file(s) remaining
Completed 52.1 MiB/64.9 MiB (49.7 MiB/s) with 1 file(s) remaining
Completed 52.4 MiB/64.9 MiB (49.7 MiB/s) with 1 file(s) remaining
Completed 52.6 MiB/64.9 MiB (49.4 MiB/s) with 1 file(s) remaining
Completed 52.9 MiB/64.9 MiB (49.5 MiB/s) with 1 file(s) remaining
Completed 53.1 MiB/64.9 MiB (48.8 MiB/s) with 1 file(s) remaining
Completed 53.4 MiB/64.9 MiB (48.8 MiB/s) with 1 file(s) remaining
Completed 53.6 MiB/64.9 MiB (48.8 MiB/s) with 1 file(s) remaining
Completed 53.9 MiB/64.9 MiB (48.8 MiB/s) with 1 file(s) remaining
Completed 54.1 MiB/64.9 MiB (49.0 MiB/s) with 1 file(s) remaining
Completed 54.4 MiB/64.9 MiB (48.4 MiB/s) with 1 file(s) remaining
Completed 54.6 MiB/64.9 MiB (48.6 MiB/s) with 1 file(s) remaining
Completed 54.9 MiB/64.9 MiB (48.7 MiB/s) with 1 file(s) remaining
Completed 55.1 MiB/64.9 MiB (48.3 MiB/s) with 1 file(s) remaining
Completed 55.4 MiB/64.9 MiB (48.3 MiB/s) with 1 file(s) remaining
Completed 55.6 MiB/64.9 MiB (48.3 MiB/s) with 1 file(s) remaining
Completed 55.9 MiB/64.9 MiB (48.3 MiB/s) with 1 file(s) remaining
Completed 56.1 MiB/64.9 MiB (48.5 MiB/s) with 1 file(s) remaining
Completed 56.4 MiB/64.9 MiB (47.9 MiB/s) with 1 file(s) remaining
Completed 56.6 MiB/64.9 MiB (47.7 MiB/s) with 1 file(s) remaining
Completed 56.9 MiB/64.9 MiB (47.7 MiB/s) with 1 file(s) remaining
Completed 57.1 MiB/64.9 MiB (47.6 MiB/s) with 1 file(s) remaining
Completed 57.4 MiB/64.9 MiB (47.1 MiB/s) with 1 file(s) remaining
Completed 57.6 MiB/64.9 MiB (47.2 MiB/s) with 1 file(s) remaining
Completed 57.9 MiB/64.9 MiB (47.3 MiB/s) with 1 file(s) remaining
Completed 58.1 MiB/64.9 MiB (46.8 MiB/s) with 1 file(s) remaining
Completed 58.4 MiB/64.9 MiB (46.8 MiB/s) with 1 file(s) remaining
Completed 58.6 MiB/64.9 MiB (46.5 MiB/s) with 1 file(s) remaining
Completed 58.9 MiB/64.9 MiB (46.4 MiB/s) with 1 file(s) remaining
Completed 59.1 MiB/64.9 MiB (46.5 MiB/s) with 1 file(s) remaining
Completed 59.4 MiB/64.9 MiB (46.0 MiB/s) with 1 file(s) remaining
Completed 59.6 MiB/64.9 MiB (46.2 MiB/s) with 1 file(s) remaining
Completed 59.9 MiB/64.9 MiB (46.3 MiB/s) with 1 file(s) remaining
Completed 60.1 MiB/64.9 MiB (45.7 MiB/s) with 1 file(s) remaining
Completed 60.4 MiB/64.9 MiB (45.9 MiB/s) with 1 file(s) remaining
Completed 60.6 MiB/64.9 MiB (45.8 MiB/s) with 1 file(s) remaining
Completed 60.9 MiB/64.9 MiB (45.5 MiB/s) with 1 file(s) remaining
Completed 61.1 MiB/64.9 MiB (45.7 MiB/s) with 1 file(s) remaining
Completed 61.4 MiB/64.9 MiB (45.4 MiB/s) with 1 file(s) remaining
Completed 61.6 MiB/64.9 MiB (45.3 MiB/s) with 1 file(s) remaining
Completed 61.9 MiB/64.9 MiB (44.9 MiB/s) with 1 file(s) remaining
Completed 62.1 MiB/64.9 MiB (44.9 MiB/s) with 1 file(s) remaining
Completed 62.4 MiB/64.9 MiB (44.4 MiB/s) with 1 file(s) remaining
Completed 62.6 MiB/64.9 MiB (44.4 MiB/s) with 1 file(s) remaining
Completed 62.9 MiB/64.9 MiB (44.1 MiB/s) with 1 file(s) remaining
Completed 63.1 MiB/64.9 MiB (43.9 MiB/s) with 1 file(s) remaining
Completed 63.4 MiB/64.9 MiB (43.8 MiB/s) with 1 file(s) remaining
Completed 63.6 MiB/64.9 MiB (43.4 MiB/s) with 1 file(s) remaining
Completed 63.9 MiB/64.9 MiB (43.0 MiB/s) with 1 file(s) remaining
Completed 64.1 MiB/64.9 MiB (42.5 MiB/s) with 1 file(s) remaining
Completed 64.4 MiB/64.9 MiB (42.1 MiB/s) with 1 file(s) remaining
Completed 64.6 MiB/64.9 MiB (41.8 MiB/s) with 1 file(s) remaining
Completed 64.9 MiB/64.9 MiB (41.4 MiB/s) with 1 file(s) remaining
download: s3://dmap-epa-prod-anotedata/RShade/RPU/RPU_Boundary.shp to data/RPU/RPU_Boundary.shp
Completed 2.3 KiB/170.0 MiB (23.1 KiB/s) with 8 file(s) remaining
Completed 2.3 KiB/170.0 MiB (22.8 KiB/s) with 8 file(s) remaining
Completed 3.6 KiB/170.0 MiB (30.4 KiB/s) with 8 file(s) remaining
download: s3://dmap-epa-prod-anotedata/RShade/HUC4/HUC4_Boundary.sbn to data/HUC4/HUC4_Boundary.sbn
Completed 3.6 KiB/170.0 MiB (30.4 KiB/s) with 7 file(s) remaining
download: s3://dmap-epa-prod-anotedata/RShade/HUC4/HUC4_Boundary.cpg to data/HUC4/HUC4_Boundary.cpg
Completed 3.6 KiB/170.0 MiB (30.4 KiB/s) with 6 file(s) remaining
Completed 4.0 KiB/170.0 MiB (29.9 KiB/s) with 6 file(s) remaining
download: s3://dmap-epa-prod-anotedata/RShade/HUC4/HUC4_Boundary.dbf to data/HUC4/HUC4_Boundary.dbf
Completed 4.0 KiB/170.0 MiB (29.9 KiB/s) with 5 file(s) remaining
Completed 6.0 KiB/170.0 MiB (40.6 KiB/s) with 5 file(s) remaining
download: s3://dmap-epa-prod-anotedata/RShade/HUC4/HUC4_Boundary.prj to data/HUC4/HUC4_Boundary.prj
Completed 6.0 KiB/170.0 MiB (40.6 KiB/s) with 4 file(s) remaining
Completed 6.2 KiB/170.0 MiB (39.7 KiB/s) with 4 file(s) remaining
download: s3://dmap-epa-prod-anotedata/RShade/HUC4/HUC4_Boundary.shx to data/HUC4/HUC4_Boundary.shx
Completed 6.2 KiB/170.0 MiB (39.7 KiB/s) with 3 file(s) remaining
download: s3://dmap-epa-prod-anotedata/RShade/HUC4/HUC4_Boundary.sbx to data/HUC4/HUC4_Boundary.sbx
Completed 6.2 KiB/170.0 MiB (39.7 KiB/s) with 2 file(s) remaining
Completed 262.2 KiB/170.0 MiB (1022.7 KiB/s) with 2 file(s) remaining
Completed 518.2 KiB/170.0 MiB (1.9 MiB/s) with 2 file(s) remaining
Completed 774.2 KiB/170.0 MiB (2.8 MiB/s) with 2 file(s) remaining
Completed 1.0 MiB/170.0 MiB (3.7 MiB/s) with 2 file(s) remaining
Completed 1.1 MiB/170.0 MiB (3.9 MiB/s) with 2 file(s) remaining
Completed 1.3 MiB/170.0 MiB (4.8 MiB/s) with 2 file(s) remaining
Completed 1.6 MiB/170.0 MiB (5.6 MiB/s) with 2 file(s) remaining
Completed 1.8 MiB/170.0 MiB (6.3 MiB/s) with 2 file(s) remaining
Completed 2.1 MiB/170.0 MiB (7.2 MiB/s) with 2 file(s) remaining
Completed 2.3 MiB/170.0 MiB (7.6 MiB/s) with 2 file(s) remaining
Completed 2.6 MiB/170.0 MiB (8.4 MiB/s) with 2 file(s) remaining
Completed 2.8 MiB/170.0 MiB (9.0 MiB/s) with 2 file(s) remaining
Completed 3.1 MiB/170.0 MiB (9.8 MiB/s) with 2 file(s) remaining
Completed 3.3 MiB/170.0 MiB (10.5 MiB/s) with 2 file(s) remaining
Completed 3.6 MiB/170.0 MiB (11.3 MiB/s) with 2 file(s) remaining
Completed 3.8 MiB/170.0 MiB (12.0 MiB/s) with 2 file(s) remaining
Completed 4.1 MiB/170.0 MiB (12.6 MiB/s) with 2 file(s) remaining
download: s3://dmap-epa-prod-anotedata/RShade/HUC4/HUC4_Boundary.shp.xml to data/HUC4/HUC4_Boundary.shp.xml
Completed 4.1 MiB/170.0 MiB (12.6 MiB/s) with 1 file(s) remaining
Completed 4.3 MiB/170.0 MiB (12.6 MiB/s) with 1 file(s) remaining
Completed 4.6 MiB/170.0 MiB (13.3 MiB/s) with 1 file(s) remaining
Completed 4.8 MiB/170.0 MiB (14.0 MiB/s) with 1 file(s) remaining
Completed 5.1 MiB/170.0 MiB (14.7 MiB/s) with 1 file(s) remaining
Completed 5.3 MiB/170.0 MiB (15.3 MiB/s) with 1 file(s) remaining
Completed 5.6 MiB/170.0 MiB (15.8 MiB/s) with 1 file(s) remaining
Completed 5.8 MiB/170.0 MiB (16.4 MiB/s) with 1 file(s) remaining
Completed 6.1 MiB/170.0 MiB (16.8 MiB/s) with 1 file(s) remaining
Completed 6.3 MiB/170.0 MiB (17.5 MiB/s) with 1 file(s) remaining
Completed 6.6 MiB/170.0 MiB (17.7 MiB/s) with 1 file(s) remaining
Completed 6.8 MiB/170.0 MiB (18.3 MiB/s) with 1 file(s) remaining
Completed 7.1 MiB/170.0 MiB (18.8 MiB/s) with 1 file(s) remaining
Completed 7.3 MiB/170.0 MiB (19.4 MiB/s) with 1 file(s) remaining
Completed 7.6 MiB/170.0 MiB (20.0 MiB/s) with 1 file(s) remaining
Completed 7.8 MiB/170.0 MiB (20.6 MiB/s) with 1 file(s) remaining
Completed 8.1 MiB/170.0 MiB (21.2 MiB/s) with 1 file(s) remaining
Completed 8.3 MiB/170.0 MiB (21.6 MiB/s) with 1 file(s) remaining
Completed 8.6 MiB/170.0 MiB (22.2 MiB/s) with 1 file(s) remaining
Completed 8.8 MiB/170.0 MiB (22.7 MiB/s) with 1 file(s) remaining
Completed 9.1 MiB/170.0 MiB (23.2 MiB/s) with 1 file(s) remaining
Completed 9.3 MiB/170.0 MiB (23.6 MiB/s) with 1 file(s) remaining
Completed 9.6 MiB/170.0 MiB (23.9 MiB/s) with 1 file(s) remaining
Completed 9.8 MiB/170.0 MiB (24.5 MiB/s) with 1 file(s) remaining
Completed 10.1 MiB/170.0 MiB (24.9 MiB/s) with 1 file(s) remaining
Completed 10.3 MiB/170.0 MiB (25.0 MiB/s) with 1 file(s) remaining
Completed 10.6 MiB/170.0 MiB (25.2 MiB/s) with 1 file(s) remaining
Completed 10.8 MiB/170.0 MiB (25.7 MiB/s) with 1 file(s) remaining
Completed 11.1 MiB/170.0 MiB (26.1 MiB/s) with 1 file(s) remaining
Completed 11.3 MiB/170.0 MiB (26.6 MiB/s) with 1 file(s) remaining
Completed 11.6 MiB/170.0 MiB (27.2 MiB/s) with 1 file(s) remaining
Completed 11.8 MiB/170.0 MiB (27.6 MiB/s) with 1 file(s) remaining
Completed 12.1 MiB/170.0 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 12.3 MiB/170.0 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 12.6 MiB/170.0 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 12.8 MiB/170.0 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 13.1 MiB/170.0 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 13.3 MiB/170.0 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 13.6 MiB/170.0 MiB (29.8 MiB/s) with 1 file(s) remaining
Completed 13.8 MiB/170.0 MiB (30.0 MiB/s) with 1 file(s) remaining
Completed 14.1 MiB/170.0 MiB (30.4 MiB/s) with 1 file(s) remaining
Completed 14.3 MiB/170.0 MiB (30.8 MiB/s) with 1 file(s) remaining
Completed 14.6 MiB/170.0 MiB (31.3 MiB/s) with 1 file(s) remaining
Completed 14.8 MiB/170.0 MiB (31.7 MiB/s) with 1 file(s) remaining
Completed 15.1 MiB/170.0 MiB (31.9 MiB/s) with 1 file(s) remaining
Completed 15.3 MiB/170.0 MiB (31.4 MiB/s) with 1 file(s) remaining
Completed 15.6 MiB/170.0 MiB (31.8 MiB/s) with 1 file(s) remaining
Completed 15.8 MiB/170.0 MiB (32.2 MiB/s) with 1 file(s) remaining
Completed 16.1 MiB/170.0 MiB (32.1 MiB/s) with 1 file(s) remaining
Completed 16.3 MiB/170.0 MiB (32.5 MiB/s) with 1 file(s) remaining
Completed 16.6 MiB/170.0 MiB (32.6 MiB/s) with 1 file(s) remaining
Completed 16.8 MiB/170.0 MiB (33.0 MiB/s) with 1 file(s) remaining
Completed 17.1 MiB/170.0 MiB (33.4 MiB/s) with 1 file(s) remaining
Completed 17.3 MiB/170.0 MiB (33.9 MiB/s) with 1 file(s) remaining
Completed 17.6 MiB/170.0 MiB (34.3 MiB/s) with 1 file(s) remaining
Completed 17.8 MiB/170.0 MiB (34.6 MiB/s) with 1 file(s) remaining
Completed 18.1 MiB/170.0 MiB (34.6 MiB/s) with 1 file(s) remaining
Completed 18.3 MiB/170.0 MiB (34.7 MiB/s) with 1 file(s) remaining
Completed 18.6 MiB/170.0 MiB (35.1 MiB/s) with 1 file(s) remaining
Completed 18.8 MiB/170.0 MiB (35.4 MiB/s) with 1 file(s) remaining
Completed 19.1 MiB/170.0 MiB (35.8 MiB/s) with 1 file(s) remaining
Completed 19.3 MiB/170.0 MiB (36.0 MiB/s) with 1 file(s) remaining
Completed 19.6 MiB/170.0 MiB (36.4 MiB/s) with 1 file(s) remaining
Completed 19.8 MiB/170.0 MiB (36.3 MiB/s) with 1 file(s) remaining
Completed 20.1 MiB/170.0 MiB (36.5 MiB/s) with 1 file(s) remaining
Completed 20.3 MiB/170.0 MiB (36.0 MiB/s) with 1 file(s) remaining
Completed 20.6 MiB/170.0 MiB (36.4 MiB/s) with 1 file(s) remaining
Completed 20.8 MiB/170.0 MiB (36.8 MiB/s) with 1 file(s) remaining
Completed 21.1 MiB/170.0 MiB (37.2 MiB/s) with 1 file(s) remaining
Completed 21.3 MiB/170.0 MiB (37.3 MiB/s) with 1 file(s) remaining
Completed 21.6 MiB/170.0 MiB (37.6 MiB/s) with 1 file(s) remaining
Completed 21.8 MiB/170.0 MiB (37.1 MiB/s) with 1 file(s) remaining
Completed 22.1 MiB/170.0 MiB (37.5 MiB/s) with 1 file(s) remaining
Completed 22.3 MiB/170.0 MiB (37.9 MiB/s) with 1 file(s) remaining
Completed 22.6 MiB/170.0 MiB (38.2 MiB/s) with 1 file(s) remaining
Completed 22.8 MiB/170.0 MiB (37.9 MiB/s) with 1 file(s) remaining
Completed 23.1 MiB/170.0 MiB (38.3 MiB/s) with 1 file(s) remaining
Completed 23.3 MiB/170.0 MiB (38.0 MiB/s) with 1 file(s) remaining
Completed 23.6 MiB/170.0 MiB (38.0 MiB/s) with 1 file(s) remaining
Completed 23.8 MiB/170.0 MiB (38.3 MiB/s) with 1 file(s) remaining
Completed 24.1 MiB/170.0 MiB (38.7 MiB/s) with 1 file(s) remaining
Completed 24.3 MiB/170.0 MiB (39.0 MiB/s) with 1 file(s) remaining
Completed 24.6 MiB/170.0 MiB (39.3 MiB/s) with 1 file(s) remaining
Completed 24.8 MiB/170.0 MiB (39.6 MiB/s) with 1 file(s) remaining
Completed 25.1 MiB/170.0 MiB (39.4 MiB/s) with 1 file(s) remaining
Completed 25.3 MiB/170.0 MiB (39.7 MiB/s) with 1 file(s) remaining
Completed 25.6 MiB/170.0 MiB (40.0 MiB/s) with 1 file(s) remaining
Completed 25.8 MiB/170.0 MiB (40.3 MiB/s) with 1 file(s) remaining
Completed 26.1 MiB/170.0 MiB (40.6 MiB/s) with 1 file(s) remaining
Completed 26.3 MiB/170.0 MiB (40.9 MiB/s) with 1 file(s) remaining
Completed 26.6 MiB/170.0 MiB (41.1 MiB/s) with 1 file(s) remaining
Completed 26.8 MiB/170.0 MiB (41.3 MiB/s) with 1 file(s) remaining
Completed 27.1 MiB/170.0 MiB (41.6 MiB/s) with 1 file(s) remaining
Completed 27.3 MiB/170.0 MiB (41.7 MiB/s) with 1 file(s) remaining
Completed 27.6 MiB/170.0 MiB (41.9 MiB/s) with 1 file(s) remaining
Completed 27.8 MiB/170.0 MiB (42.2 MiB/s) with 1 file(s) remaining
Completed 28.1 MiB/170.0 MiB (42.2 MiB/s) with 1 file(s) remaining
Completed 28.3 MiB/170.0 MiB (42.5 MiB/s) with 1 file(s) remaining
Completed 28.6 MiB/170.0 MiB (42.8 MiB/s) with 1 file(s) remaining
Completed 28.8 MiB/170.0 MiB (42.9 MiB/s) with 1 file(s) remaining
Completed 29.1 MiB/170.0 MiB (43.2 MiB/s) with 1 file(s) remaining
Completed 29.3 MiB/170.0 MiB (43.0 MiB/s) with 1 file(s) remaining
Completed 29.6 MiB/170.0 MiB (43.3 MiB/s) with 1 file(s) remaining
Completed 29.8 MiB/170.0 MiB (43.6 MiB/s) with 1 file(s) remaining
Completed 30.1 MiB/170.0 MiB (43.7 MiB/s) with 1 file(s) remaining
Completed 30.3 MiB/170.0 MiB (43.8 MiB/s) with 1 file(s) remaining
Completed 30.6 MiB/170.0 MiB (44.0 MiB/s) with 1 file(s) remaining
Completed 30.8 MiB/170.0 MiB (44.3 MiB/s) with 1 file(s) remaining
Completed 31.1 MiB/170.0 MiB (44.4 MiB/s) with 1 file(s) remaining
Completed 31.3 MiB/170.0 MiB (44.7 MiB/s) with 1 file(s) remaining
Completed 31.6 MiB/170.0 MiB (45.0 MiB/s) with 1 file(s) remaining
Completed 31.8 MiB/170.0 MiB (45.2 MiB/s) with 1 file(s) remaining
Completed 32.1 MiB/170.0 MiB (45.4 MiB/s) with 1 file(s) remaining
Completed 32.3 MiB/170.0 MiB (45.4 MiB/s) with 1 file(s) remaining
Completed 32.6 MiB/170.0 MiB (45.6 MiB/s) with 1 file(s) remaining
Completed 32.8 MiB/170.0 MiB (45.9 MiB/s) with 1 file(s) remaining
Completed 33.1 MiB/170.0 MiB (45.9 MiB/s) with 1 file(s) remaining
Completed 33.3 MiB/170.0 MiB (46.2 MiB/s) with 1 file(s) remaining
Completed 33.6 MiB/170.0 MiB (46.1 MiB/s) with 1 file(s) remaining
Completed 33.8 MiB/170.0 MiB (46.3 MiB/s) with 1 file(s) remaining
Completed 34.1 MiB/170.0 MiB (46.4 MiB/s) with 1 file(s) remaining
Completed 34.3 MiB/170.0 MiB (46.6 MiB/s) with 1 file(s) remaining
Completed 34.6 MiB/170.0 MiB (46.8 MiB/s) with 1 file(s) remaining
Completed 34.8 MiB/170.0 MiB (46.7 MiB/s) with 1 file(s) remaining
Completed 35.1 MiB/170.0 MiB (46.6 MiB/s) with 1 file(s) remaining
Completed 35.3 MiB/170.0 MiB (46.9 MiB/s) with 1 file(s) remaining
Completed 35.6 MiB/170.0 MiB (47.1 MiB/s) with 1 file(s) remaining
Completed 35.8 MiB/170.0 MiB (47.1 MiB/s) with 1 file(s) remaining
Completed 36.1 MiB/170.0 MiB (47.3 MiB/s) with 1 file(s) remaining
Completed 36.3 MiB/170.0 MiB (47.4 MiB/s) with 1 file(s) remaining
Completed 36.6 MiB/170.0 MiB (47.5 MiB/s) with 1 file(s) remaining
Completed 36.8 MiB/170.0 MiB (47.7 MiB/s) with 1 file(s) remaining
Completed 37.1 MiB/170.0 MiB (47.9 MiB/s) with 1 file(s) remaining
Completed 37.3 MiB/170.0 MiB (48.1 MiB/s) with 1 file(s) remaining
Completed 37.6 MiB/170.0 MiB (48.4 MiB/s) with 1 file(s) remaining
Completed 37.8 MiB/170.0 MiB (48.5 MiB/s) with 1 file(s) remaining
Completed 38.1 MiB/170.0 MiB (48.7 MiB/s) with 1 file(s) remaining
Completed 38.3 MiB/170.0 MiB (49.0 MiB/s) with 1 file(s) remaining
Completed 38.6 MiB/170.0 MiB (49.3 MiB/s) with 1 file(s) remaining
Completed 38.8 MiB/170.0 MiB (48.9 MiB/s) with 1 file(s) remaining
Completed 39.1 MiB/170.0 MiB (48.8 MiB/s) with 1 file(s) remaining
Completed 39.3 MiB/170.0 MiB (49.0 MiB/s) with 1 file(s) remaining
Completed 39.6 MiB/170.0 MiB (49.0 MiB/s) with 1 file(s) remaining
Completed 39.8 MiB/170.0 MiB (49.1 MiB/s) with 1 file(s) remaining
Completed 40.1 MiB/170.0 MiB (49.2 MiB/s) with 1 file(s) remaining
Completed 40.3 MiB/170.0 MiB (49.5 MiB/s) with 1 file(s) remaining
Completed 40.6 MiB/170.0 MiB (49.6 MiB/s) with 1 file(s) remaining
Completed 40.8 MiB/170.0 MiB (49.8 MiB/s) with 1 file(s) remaining
Completed 41.1 MiB/170.0 MiB (49.9 MiB/s) with 1 file(s) remaining
Completed 41.3 MiB/170.0 MiB (49.7 MiB/s) with 1 file(s) remaining
Completed 41.6 MiB/170.0 MiB (49.9 MiB/s) with 1 file(s) remaining
Completed 41.8 MiB/170.0 MiB (50.1 MiB/s) with 1 file(s) remaining
Completed 42.1 MiB/170.0 MiB (49.7 MiB/s) with 1 file(s) remaining
Completed 42.3 MiB/170.0 MiB (49.8 MiB/s) with 1 file(s) remaining
Completed 42.6 MiB/170.0 MiB (49.8 MiB/s) with 1 file(s) remaining
Completed 42.8 MiB/170.0 MiB (49.9 MiB/s) with 1 file(s) remaining
Completed 43.1 MiB/170.0 MiB (50.1 MiB/s) with 1 file(s) remaining
Completed 43.3 MiB/170.0 MiB (50.4 MiB/s) with 1 file(s) remaining
Completed 43.6 MiB/170.0 MiB (50.4 MiB/s) with 1 file(s) remaining
Completed 43.8 MiB/170.0 MiB (50.6 MiB/s) with 1 file(s) remaining
Completed 44.1 MiB/170.0 MiB (50.9 MiB/s) with 1 file(s) remaining
Completed 44.3 MiB/170.0 MiB (50.9 MiB/s) with 1 file(s) remaining
Completed 44.6 MiB/170.0 MiB (50.9 MiB/s) with 1 file(s) remaining
Completed 44.8 MiB/170.0 MiB (50.9 MiB/s) with 1 file(s) remaining
Completed 45.1 MiB/170.0 MiB (50.9 MiB/s) with 1 file(s) remaining
Completed 45.3 MiB/170.0 MiB (49.9 MiB/s) with 1 file(s) remaining
Completed 45.6 MiB/170.0 MiB (49.8 MiB/s) with 1 file(s) remaining
Completed 45.8 MiB/170.0 MiB (49.9 MiB/s) with 1 file(s) remaining
Completed 46.1 MiB/170.0 MiB (50.1 MiB/s) with 1 file(s) remaining
Completed 46.3 MiB/170.0 MiB (50.3 MiB/s) with 1 file(s) remaining
Completed 46.6 MiB/170.0 MiB (49.9 MiB/s) with 1 file(s) remaining
Completed 46.8 MiB/170.0 MiB (50.0 MiB/s) with 1 file(s) remaining
Completed 47.1 MiB/170.0 MiB (49.3 MiB/s) with 1 file(s) remaining
Completed 47.3 MiB/170.0 MiB (49.5 MiB/s) with 1 file(s) remaining
Completed 47.6 MiB/170.0 MiB (49.7 MiB/s) with 1 file(s) remaining
Completed 47.8 MiB/170.0 MiB (49.9 MiB/s) with 1 file(s) remaining
Completed 48.1 MiB/170.0 MiB (49.9 MiB/s) with 1 file(s) remaining
Completed 48.3 MiB/170.0 MiB (49.9 MiB/s) with 1 file(s) remaining
Completed 48.6 MiB/170.0 MiB (49.6 MiB/s) with 1 file(s) remaining
Completed 48.8 MiB/170.0 MiB (49.2 MiB/s) with 1 file(s) remaining
Completed 49.1 MiB/170.0 MiB (49.2 MiB/s) with 1 file(s) remaining
Completed 49.3 MiB/170.0 MiB (49.4 MiB/s) with 1 file(s) remaining
Completed 49.6 MiB/170.0 MiB (48.9 MiB/s) with 1 file(s) remaining
Completed 49.8 MiB/170.0 MiB (49.1 MiB/s) with 1 file(s) remaining
Completed 50.1 MiB/170.0 MiB (49.0 MiB/s) with 1 file(s) remaining
Completed 50.3 MiB/170.0 MiB (49.2 MiB/s) with 1 file(s) remaining
Completed 50.6 MiB/170.0 MiB (49.2 MiB/s) with 1 file(s) remaining
Completed 50.8 MiB/170.0 MiB (49.4 MiB/s) with 1 file(s) remaining
Completed 51.1 MiB/170.0 MiB (49.4 MiB/s) with 1 file(s) remaining
Completed 51.3 MiB/170.0 MiB (49.6 MiB/s) with 1 file(s) remaining
Completed 51.6 MiB/170.0 MiB (49.7 MiB/s) with 1 file(s) remaining
Completed 51.8 MiB/170.0 MiB (49.7 MiB/s) with 1 file(s) remaining
Completed 52.1 MiB/170.0 MiB (49.3 MiB/s) with 1 file(s) remaining
Completed 52.3 MiB/170.0 MiB (49.0 MiB/s) with 1 file(s) remaining
Completed 52.6 MiB/170.0 MiB (49.1 MiB/s) with 1 file(s) remaining
Completed 52.8 MiB/170.0 MiB (48.9 MiB/s) with 1 file(s) remaining
Completed 53.1 MiB/170.0 MiB (49.1 MiB/s) with 1 file(s) remaining
Completed 53.3 MiB/170.0 MiB (49.4 MiB/s) with 1 file(s) remaining
Completed 53.6 MiB/170.0 MiB (49.5 MiB/s) with 1 file(s) remaining
Completed 53.8 MiB/170.0 MiB (49.7 MiB/s) with 1 file(s) remaining
Completed 54.1 MiB/170.0 MiB (49.9 MiB/s) with 1 file(s) remaining
Completed 54.3 MiB/170.0 MiB (49.8 MiB/s) with 1 file(s) remaining
Completed 54.6 MiB/170.0 MiB (49.8 MiB/s) with 1 file(s) remaining
Completed 54.8 MiB/170.0 MiB (49.9 MiB/s) with 1 file(s) remaining
Completed 55.1 MiB/170.0 MiB (49.7 MiB/s) with 1 file(s) remaining
Completed 55.3 MiB/170.0 MiB (49.8 MiB/s) with 1 file(s) remaining
Completed 55.6 MiB/170.0 MiB (50.0 MiB/s) with 1 file(s) remaining
Completed 55.8 MiB/170.0 MiB (50.1 MiB/s) with 1 file(s) remaining
Completed 56.1 MiB/170.0 MiB (50.1 MiB/s) with 1 file(s) remaining
Completed 56.3 MiB/170.0 MiB (50.2 MiB/s) with 1 file(s) remaining
Completed 56.6 MiB/170.0 MiB (50.2 MiB/s) with 1 file(s) remaining
Completed 56.8 MiB/170.0 MiB (50.4 MiB/s) with 1 file(s) remaining
Completed 57.1 MiB/170.0 MiB (50.5 MiB/s) with 1 file(s) remaining
Completed 57.3 MiB/170.0 MiB (50.6 MiB/s) with 1 file(s) remaining
Completed 57.6 MiB/170.0 MiB (50.6 MiB/s) with 1 file(s) remaining
Completed 57.8 MiB/170.0 MiB (50.7 MiB/s) with 1 file(s) remaining
Completed 58.1 MiB/170.0 MiB (50.7 MiB/s) with 1 file(s) remaining
Completed 58.3 MiB/170.0 MiB (50.9 MiB/s) with 1 file(s) remaining
Completed 58.6 MiB/170.0 MiB (50.9 MiB/s) with 1 file(s) remaining
Completed 58.8 MiB/170.0 MiB (51.1 MiB/s) with 1 file(s) remaining
Completed 59.1 MiB/170.0 MiB (50.9 MiB/s) with 1 file(s) remaining
Completed 59.3 MiB/170.0 MiB (51.1 MiB/s) with 1 file(s) remaining
Completed 59.6 MiB/170.0 MiB (51.2 MiB/s) with 1 file(s) remaining
Completed 59.8 MiB/170.0 MiB (51.2 MiB/s) with 1 file(s) remaining
Completed 60.1 MiB/170.0 MiB (51.1 MiB/s) with 1 file(s) remaining
Completed 60.3 MiB/170.0 MiB (51.3 MiB/s) with 1 file(s) remaining
Completed 60.6 MiB/170.0 MiB (51.4 MiB/s) with 1 file(s) remaining
Completed 60.8 MiB/170.0 MiB (51.6 MiB/s) with 1 file(s) remaining
Completed 61.1 MiB/170.0 MiB (51.8 MiB/s) with 1 file(s) remaining
Completed 61.3 MiB/170.0 MiB (51.9 MiB/s) with 1 file(s) remaining
Completed 61.6 MiB/170.0 MiB (52.0 MiB/s) with 1 file(s) remaining
Completed 61.8 MiB/170.0 MiB (51.7 MiB/s) with 1 file(s) remaining
Completed 62.1 MiB/170.0 MiB (51.6 MiB/s) with 1 file(s) remaining
Completed 62.3 MiB/170.0 MiB (51.7 MiB/s) with 1 file(s) remaining
Completed 62.6 MiB/170.0 MiB (51.9 MiB/s) with 1 file(s) remaining
Completed 62.8 MiB/170.0 MiB (52.1 MiB/s) with 1 file(s) remaining
Completed 63.1 MiB/170.0 MiB (52.2 MiB/s) with 1 file(s) remaining
Completed 63.3 MiB/170.0 MiB (52.2 MiB/s) with 1 file(s) remaining
Completed 63.6 MiB/170.0 MiB (52.3 MiB/s) with 1 file(s) remaining
Completed 63.8 MiB/170.0 MiB (52.3 MiB/s) with 1 file(s) remaining
Completed 64.1 MiB/170.0 MiB (52.5 MiB/s) with 1 file(s) remaining
Completed 64.3 MiB/170.0 MiB (52.5 MiB/s) with 1 file(s) remaining
Completed 64.6 MiB/170.0 MiB (52.5 MiB/s) with 1 file(s) remaining
Completed 64.8 MiB/170.0 MiB (52.6 MiB/s) with 1 file(s) remaining
Completed 65.1 MiB/170.0 MiB (52.7 MiB/s) with 1 file(s) remaining
Completed 65.3 MiB/170.0 MiB (52.9 MiB/s) with 1 file(s) remaining
Completed 65.6 MiB/170.0 MiB (53.0 MiB/s) with 1 file(s) remaining
Completed 65.8 MiB/170.0 MiB (53.1 MiB/s) with 1 file(s) remaining
Completed 66.1 MiB/170.0 MiB (52.8 MiB/s) with 1 file(s) remaining
Completed 66.3 MiB/170.0 MiB (53.0 MiB/s) with 1 file(s) remaining
Completed 66.6 MiB/170.0 MiB (53.0 MiB/s) with 1 file(s) remaining
Completed 66.8 MiB/170.0 MiB (53.0 MiB/s) with 1 file(s) remaining
Completed 67.1 MiB/170.0 MiB (53.2 MiB/s) with 1 file(s) remaining
Completed 67.3 MiB/170.0 MiB (53.3 MiB/s) with 1 file(s) remaining
Completed 67.6 MiB/170.0 MiB (53.3 MiB/s) with 1 file(s) remaining
Completed 67.8 MiB/170.0 MiB (53.4 MiB/s) with 1 file(s) remaining
Completed 68.1 MiB/170.0 MiB (53.5 MiB/s) with 1 file(s) remaining
Completed 68.3 MiB/170.0 MiB (53.7 MiB/s) with 1 file(s) remaining
Completed 68.6 MiB/170.0 MiB (53.9 MiB/s) with 1 file(s) remaining
Completed 68.8 MiB/170.0 MiB (53.9 MiB/s) with 1 file(s) remaining
Completed 69.1 MiB/170.0 MiB (53.5 MiB/s) with 1 file(s) remaining
Completed 69.3 MiB/170.0 MiB (53.5 MiB/s) with 1 file(s) remaining
Completed 69.6 MiB/170.0 MiB (53.6 MiB/s) with 1 file(s) remaining
Completed 69.8 MiB/170.0 MiB (53.8 MiB/s) with 1 file(s) remaining
Completed 70.1 MiB/170.0 MiB (53.9 MiB/s) with 1 file(s) remaining
Completed 70.3 MiB/170.0 MiB (53.9 MiB/s) with 1 file(s) remaining
Completed 70.6 MiB/170.0 MiB (53.9 MiB/s) with 1 file(s) remaining
Completed 70.8 MiB/170.0 MiB (54.0 MiB/s) with 1 file(s) remaining
Completed 71.1 MiB/170.0 MiB (54.2 MiB/s) with 1 file(s) remaining
Completed 71.3 MiB/170.0 MiB (54.3 MiB/s) with 1 file(s) remaining
Completed 71.6 MiB/170.0 MiB (54.2 MiB/s) with 1 file(s) remaining
Completed 71.8 MiB/170.0 MiB (54.3 MiB/s) with 1 file(s) remaining
Completed 72.1 MiB/170.0 MiB (54.4 MiB/s) with 1 file(s) remaining
Completed 72.3 MiB/170.0 MiB (54.1 MiB/s) with 1 file(s) remaining
Completed 72.6 MiB/170.0 MiB (54.3 MiB/s) with 1 file(s) remaining
Completed 72.8 MiB/170.0 MiB (54.4 MiB/s) with 1 file(s) remaining
Completed 73.1 MiB/170.0 MiB (54.5 MiB/s) with 1 file(s) remaining
Completed 73.3 MiB/170.0 MiB (54.7 MiB/s) with 1 file(s) remaining
Completed 73.6 MiB/170.0 MiB (54.7 MiB/s) with 1 file(s) remaining
Completed 73.8 MiB/170.0 MiB (54.9 MiB/s) with 1 file(s) remaining
Completed 74.1 MiB/170.0 MiB (55.0 MiB/s) with 1 file(s) remaining
Completed 74.3 MiB/170.0 MiB (54.8 MiB/s) with 1 file(s) remaining
Completed 74.6 MiB/170.0 MiB (55.0 MiB/s) with 1 file(s) remaining
Completed 74.8 MiB/170.0 MiB (54.6 MiB/s) with 1 file(s) remaining
Completed 75.1 MiB/170.0 MiB (54.8 MiB/s) with 1 file(s) remaining
Completed 75.3 MiB/170.0 MiB (54.8 MiB/s) with 1 file(s) remaining
Completed 75.6 MiB/170.0 MiB (54.9 MiB/s) with 1 file(s) remaining
Completed 75.8 MiB/170.0 MiB (55.0 MiB/s) with 1 file(s) remaining
Completed 76.1 MiB/170.0 MiB (55.2 MiB/s) with 1 file(s) remaining
Completed 76.3 MiB/170.0 MiB (55.3 MiB/s) with 1 file(s) remaining
Completed 76.6 MiB/170.0 MiB (55.4 MiB/s) with 1 file(s) remaining
Completed 76.8 MiB/170.0 MiB (55.5 MiB/s) with 1 file(s) remaining
Completed 77.1 MiB/170.0 MiB (55.3 MiB/s) with 1 file(s) remaining
Completed 77.3 MiB/170.0 MiB (55.5 MiB/s) with 1 file(s) remaining
Completed 77.6 MiB/170.0 MiB (55.5 MiB/s) with 1 file(s) remaining
Completed 77.8 MiB/170.0 MiB (55.3 MiB/s) with 1 file(s) remaining
Completed 78.1 MiB/170.0 MiB (55.5 MiB/s) with 1 file(s) remaining
Completed 78.3 MiB/170.0 MiB (55.6 MiB/s) with 1 file(s) remaining
Completed 78.6 MiB/170.0 MiB (55.7 MiB/s) with 1 file(s) remaining
Completed 78.8 MiB/170.0 MiB (55.8 MiB/s) with 1 file(s) remaining
Completed 79.1 MiB/170.0 MiB (56.0 MiB/s) with 1 file(s) remaining
Completed 79.3 MiB/170.0 MiB (56.0 MiB/s) with 1 file(s) remaining
Completed 79.6 MiB/170.0 MiB (56.1 MiB/s) with 1 file(s) remaining
Completed 79.8 MiB/170.0 MiB (56.2 MiB/s) with 1 file(s) remaining
Completed 80.1 MiB/170.0 MiB (56.2 MiB/s) with 1 file(s) remaining
Completed 80.3 MiB/170.0 MiB (56.1 MiB/s) with 1 file(s) remaining
Completed 80.6 MiB/170.0 MiB (56.1 MiB/s) with 1 file(s) remaining
Completed 80.8 MiB/170.0 MiB (56.3 MiB/s) with 1 file(s) remaining
Completed 81.1 MiB/170.0 MiB (56.2 MiB/s) with 1 file(s) remaining
Completed 81.3 MiB/170.0 MiB (56.0 MiB/s) with 1 file(s) remaining
Completed 81.6 MiB/170.0 MiB (56.2 MiB/s) with 1 file(s) remaining
Completed 81.8 MiB/170.0 MiB (56.2 MiB/s) with 1 file(s) remaining
Completed 82.1 MiB/170.0 MiB (56.3 MiB/s) with 1 file(s) remaining
Completed 82.3 MiB/170.0 MiB (56.3 MiB/s) with 1 file(s) remaining
Completed 82.6 MiB/170.0 MiB (56.2 MiB/s) with 1 file(s) remaining
Completed 82.8 MiB/170.0 MiB (56.2 MiB/s) with 1 file(s) remaining
Completed 83.1 MiB/170.0 MiB (56.4 MiB/s) with 1 file(s) remaining
Completed 83.3 MiB/170.0 MiB (56.5 MiB/s) with 1 file(s) remaining
Completed 83.6 MiB/170.0 MiB (56.3 MiB/s) with 1 file(s) remaining
Completed 83.8 MiB/170.0 MiB (56.4 MiB/s) with 1 file(s) remaining
Completed 84.1 MiB/170.0 MiB (56.3 MiB/s) with 1 file(s) remaining
Completed 84.3 MiB/170.0 MiB (56.4 MiB/s) with 1 file(s) remaining
Completed 84.6 MiB/170.0 MiB (56.3 MiB/s) with 1 file(s) remaining
Completed 84.8 MiB/170.0 MiB (56.4 MiB/s) with 1 file(s) remaining
Completed 85.1 MiB/170.0 MiB (56.5 MiB/s) with 1 file(s) remaining
Completed 85.3 MiB/170.0 MiB (56.5 MiB/s) with 1 file(s) remaining
Completed 85.6 MiB/170.0 MiB (56.6 MiB/s) with 1 file(s) remaining
Completed 85.8 MiB/170.0 MiB (56.6 MiB/s) with 1 file(s) remaining
Completed 86.1 MiB/170.0 MiB (56.5 MiB/s) with 1 file(s) remaining
Completed 86.3 MiB/170.0 MiB (56.6 MiB/s) with 1 file(s) remaining
Completed 86.6 MiB/170.0 MiB (56.5 MiB/s) with 1 file(s) remaining
Completed 86.8 MiB/170.0 MiB (56.6 MiB/s) with 1 file(s) remaining
Completed 87.1 MiB/170.0 MiB (56.6 MiB/s) with 1 file(s) remaining
Completed 87.3 MiB/170.0 MiB (56.7 MiB/s) with 1 file(s) remaining
Completed 87.6 MiB/170.0 MiB (56.6 MiB/s) with 1 file(s) remaining
Completed 87.8 MiB/170.0 MiB (56.6 MiB/s) with 1 file(s) remaining
Completed 88.1 MiB/170.0 MiB (56.5 MiB/s) with 1 file(s) remaining
Completed 88.3 MiB/170.0 MiB (56.7 MiB/s) with 1 file(s) remaining
Completed 88.6 MiB/170.0 MiB (56.7 MiB/s) with 1 file(s) remaining
Completed 88.8 MiB/170.0 MiB (56.6 MiB/s) with 1 file(s) remaining
Completed 89.1 MiB/170.0 MiB (56.6 MiB/s) with 1 file(s) remaining
Completed 89.3 MiB/170.0 MiB (56.7 MiB/s) with 1 file(s) remaining
Completed 89.6 MiB/170.0 MiB (56.8 MiB/s) with 1 file(s) remaining
Completed 89.8 MiB/170.0 MiB (56.7 MiB/s) with 1 file(s) remaining
Completed 90.1 MiB/170.0 MiB (56.7 MiB/s) with 1 file(s) remaining
Completed 90.3 MiB/170.0 MiB (56.9 MiB/s) with 1 file(s) remaining
Completed 90.6 MiB/170.0 MiB (57.0 MiB/s) with 1 file(s) remaining
Completed 90.8 MiB/170.0 MiB (56.8 MiB/s) with 1 file(s) remaining
Completed 91.1 MiB/170.0 MiB (56.9 MiB/s) with 1 file(s) remaining
Completed 91.3 MiB/170.0 MiB (57.0 MiB/s) with 1 file(s) remaining
Completed 91.6 MiB/170.0 MiB (56.9 MiB/s) with 1 file(s) remaining
Completed 91.8 MiB/170.0 MiB (56.9 MiB/s) with 1 file(s) remaining
Completed 92.1 MiB/170.0 MiB (57.0 MiB/s) with 1 file(s) remaining
Completed 92.3 MiB/170.0 MiB (57.0 MiB/s) with 1 file(s) remaining
Completed 92.6 MiB/170.0 MiB (57.1 MiB/s) with 1 file(s) remaining
Completed 92.8 MiB/170.0 MiB (57.2 MiB/s) with 1 file(s) remaining
Completed 93.1 MiB/170.0 MiB (57.3 MiB/s) with 1 file(s) remaining
Completed 93.3 MiB/170.0 MiB (57.3 MiB/s) with 1 file(s) remaining
Completed 93.6 MiB/170.0 MiB (57.2 MiB/s) with 1 file(s) remaining
Completed 93.8 MiB/170.0 MiB (57.0 MiB/s) with 1 file(s) remaining
Completed 94.1 MiB/170.0 MiB (56.9 MiB/s) with 1 file(s) remaining
Completed 94.3 MiB/170.0 MiB (57.0 MiB/s) with 1 file(s) remaining
Completed 94.6 MiB/170.0 MiB (57.2 MiB/s) with 1 file(s) remaining
Completed 94.8 MiB/170.0 MiB (57.3 MiB/s) with 1 file(s) remaining
Completed 95.1 MiB/170.0 MiB (57.4 MiB/s) with 1 file(s) remaining
Completed 95.3 MiB/170.0 MiB (57.4 MiB/s) with 1 file(s) remaining
Completed 95.6 MiB/170.0 MiB (57.5 MiB/s) with 1 file(s) remaining
Completed 95.8 MiB/170.0 MiB (57.5 MiB/s) with 1 file(s) remaining
Completed 96.1 MiB/170.0 MiB (57.3 MiB/s) with 1 file(s) remaining
Completed 96.3 MiB/170.0 MiB (57.3 MiB/s) with 1 file(s) remaining
Completed 96.6 MiB/170.0 MiB (57.4 MiB/s) with 1 file(s) remaining
Completed 96.8 MiB/170.0 MiB (57.4 MiB/s) with 1 file(s) remaining
Completed 97.1 MiB/170.0 MiB (57.5 MiB/s) with 1 file(s) remaining
Completed 97.3 MiB/170.0 MiB (57.6 MiB/s) with 1 file(s) remaining
Completed 97.6 MiB/170.0 MiB (57.8 MiB/s) with 1 file(s) remaining
Completed 97.8 MiB/170.0 MiB (57.5 MiB/s) with 1 file(s) remaining
Completed 98.1 MiB/170.0 MiB (57.6 MiB/s) with 1 file(s) remaining
Completed 98.3 MiB/170.0 MiB (57.6 MiB/s) with 1 file(s) remaining
Completed 98.6 MiB/170.0 MiB (57.7 MiB/s) with 1 file(s) remaining
Completed 98.8 MiB/170.0 MiB (57.8 MiB/s) with 1 file(s) remaining
Completed 99.1 MiB/170.0 MiB (57.9 MiB/s) with 1 file(s) remaining
Completed 99.3 MiB/170.0 MiB (57.8 MiB/s) with 1 file(s) remaining
Completed 99.6 MiB/170.0 MiB (57.6 MiB/s) with 1 file(s) remaining
Completed 99.8 MiB/170.0 MiB (57.7 MiB/s) with 1 file(s) remaining
Completed 100.1 MiB/170.0 MiB (57.8 MiB/s) with 1 file(s) remaining
Completed 100.3 MiB/170.0 MiB (57.9 MiB/s) with 1 file(s) remaining
Completed 100.6 MiB/170.0 MiB (58.0 MiB/s) with 1 file(s) remaining
Completed 100.8 MiB/170.0 MiB (57.8 MiB/s) with 1 file(s) remaining
Completed 101.1 MiB/170.0 MiB (57.8 MiB/s) with 1 file(s) remaining
Completed 101.3 MiB/170.0 MiB (57.8 MiB/s) with 1 file(s) remaining
Completed 101.6 MiB/170.0 MiB (57.8 MiB/s) with 1 file(s) remaining
Completed 101.8 MiB/170.0 MiB (57.9 MiB/s) with 1 file(s) remaining
Completed 102.1 MiB/170.0 MiB (57.8 MiB/s) with 1 file(s) remaining
Completed 102.3 MiB/170.0 MiB (57.9 MiB/s) with 1 file(s) remaining
Completed 102.6 MiB/170.0 MiB (58.0 MiB/s) with 1 file(s) remaining
Completed 102.8 MiB/170.0 MiB (58.1 MiB/s) with 1 file(s) remaining
Completed 103.1 MiB/170.0 MiB (58.1 MiB/s) with 1 file(s) remaining
Completed 103.3 MiB/170.0 MiB (58.2 MiB/s) with 1 file(s) remaining
Completed 103.6 MiB/170.0 MiB (58.1 MiB/s) with 1 file(s) remaining
Completed 103.8 MiB/170.0 MiB (58.1 MiB/s) with 1 file(s) remaining
Completed 104.1 MiB/170.0 MiB (58.1 MiB/s) with 1 file(s) remaining
Completed 104.3 MiB/170.0 MiB (58.2 MiB/s) with 1 file(s) remaining
Completed 104.6 MiB/170.0 MiB (58.3 MiB/s) with 1 file(s) remaining
Completed 104.8 MiB/170.0 MiB (58.4 MiB/s) with 1 file(s) remaining
Completed 105.1 MiB/170.0 MiB (58.5 MiB/s) with 1 file(s) remaining
Completed 105.3 MiB/170.0 MiB (58.0 MiB/s) with 1 file(s) remaining
Completed 105.6 MiB/170.0 MiB (58.0 MiB/s) with 1 file(s) remaining
Completed 105.8 MiB/170.0 MiB (58.0 MiB/s) with 1 file(s) remaining
Completed 106.1 MiB/170.0 MiB (58.1 MiB/s) with 1 file(s) remaining
Completed 106.3 MiB/170.0 MiB (58.2 MiB/s) with 1 file(s) remaining
Completed 106.6 MiB/170.0 MiB (58.2 MiB/s) with 1 file(s) remaining
Completed 106.8 MiB/170.0 MiB (58.1 MiB/s) with 1 file(s) remaining
Completed 107.1 MiB/170.0 MiB (58.2 MiB/s) with 1 file(s) remaining
Completed 107.3 MiB/170.0 MiB (58.3 MiB/s) with 1 file(s) remaining
Completed 107.6 MiB/170.0 MiB (58.2 MiB/s) with 1 file(s) remaining
Completed 107.8 MiB/170.0 MiB (58.3 MiB/s) with 1 file(s) remaining
Completed 108.1 MiB/170.0 MiB (58.4 MiB/s) with 1 file(s) remaining
Completed 108.3 MiB/170.0 MiB (58.5 MiB/s) with 1 file(s) remaining
Completed 108.6 MiB/170.0 MiB (58.5 MiB/s) with 1 file(s) remaining
Completed 108.8 MiB/170.0 MiB (58.3 MiB/s) with 1 file(s) remaining
Completed 109.1 MiB/170.0 MiB (58.4 MiB/s) with 1 file(s) remaining
Completed 109.3 MiB/170.0 MiB (58.4 MiB/s) with 1 file(s) remaining
Completed 109.6 MiB/170.0 MiB (58.4 MiB/s) with 1 file(s) remaining
Completed 109.8 MiB/170.0 MiB (58.5 MiB/s) with 1 file(s) remaining
Completed 110.1 MiB/170.0 MiB (58.6 MiB/s) with 1 file(s) remaining
Completed 110.3 MiB/170.0 MiB (58.6 MiB/s) with 1 file(s) remaining
Completed 110.6 MiB/170.0 MiB (58.6 MiB/s) with 1 file(s) remaining
Completed 110.8 MiB/170.0 MiB (58.6 MiB/s) with 1 file(s) remaining
Completed 111.1 MiB/170.0 MiB (58.5 MiB/s) with 1 file(s) remaining
Completed 111.3 MiB/170.0 MiB (58.3 MiB/s) with 1 file(s) remaining
Completed 111.6 MiB/170.0 MiB (58.2 MiB/s) with 1 file(s) remaining
Completed 111.8 MiB/170.0 MiB (58.3 MiB/s) with 1 file(s) remaining
Completed 112.1 MiB/170.0 MiB (58.4 MiB/s) with 1 file(s) remaining
Completed 112.3 MiB/170.0 MiB (58.5 MiB/s) with 1 file(s) remaining
Completed 112.6 MiB/170.0 MiB (58.5 MiB/s) with 1 file(s) remaining
Completed 112.8 MiB/170.0 MiB (58.6 MiB/s) with 1 file(s) remaining
Completed 113.1 MiB/170.0 MiB (58.7 MiB/s) with 1 file(s) remaining
Completed 113.3 MiB/170.0 MiB (58.6 MiB/s) with 1 file(s) remaining
Completed 113.6 MiB/170.0 MiB (58.7 MiB/s) with 1 file(s) remaining
Completed 113.8 MiB/170.0 MiB (58.5 MiB/s) with 1 file(s) remaining
Completed 114.1 MiB/170.0 MiB (58.4 MiB/s) with 1 file(s) remaining
Completed 114.3 MiB/170.0 MiB (58.3 MiB/s) with 1 file(s) remaining
Completed 114.6 MiB/170.0 MiB (58.4 MiB/s) with 1 file(s) remaining
Completed 114.8 MiB/170.0 MiB (58.5 MiB/s) with 1 file(s) remaining
Completed 115.1 MiB/170.0 MiB (58.5 MiB/s) with 1 file(s) remaining
Completed 115.3 MiB/170.0 MiB (58.6 MiB/s) with 1 file(s) remaining
Completed 115.6 MiB/170.0 MiB (58.6 MiB/s) with 1 file(s) remaining
Completed 115.8 MiB/170.0 MiB (58.6 MiB/s) with 1 file(s) remaining
Completed 116.1 MiB/170.0 MiB (58.6 MiB/s) with 1 file(s) remaining
Completed 116.3 MiB/170.0 MiB (58.7 MiB/s) with 1 file(s) remaining
Completed 116.6 MiB/170.0 MiB (58.7 MiB/s) with 1 file(s) remaining
Completed 116.8 MiB/170.0 MiB (58.8 MiB/s) with 1 file(s) remaining
Completed 117.1 MiB/170.0 MiB (58.6 MiB/s) with 1 file(s) remaining
Completed 117.3 MiB/170.0 MiB (58.7 MiB/s) with 1 file(s) remaining
Completed 117.6 MiB/170.0 MiB (58.7 MiB/s) with 1 file(s) remaining
Completed 117.8 MiB/170.0 MiB (58.8 MiB/s) with 1 file(s) remaining
Completed 118.1 MiB/170.0 MiB (58.9 MiB/s) with 1 file(s) remaining
Completed 118.3 MiB/170.0 MiB (58.8 MiB/s) with 1 file(s) remaining
Completed 118.6 MiB/170.0 MiB (58.9 MiB/s) with 1 file(s) remaining
Completed 118.8 MiB/170.0 MiB (59.0 MiB/s) with 1 file(s) remaining
Completed 119.1 MiB/170.0 MiB (59.0 MiB/s) with 1 file(s) remaining
Completed 119.3 MiB/170.0 MiB (59.1 MiB/s) with 1 file(s) remaining
Completed 119.6 MiB/170.0 MiB (59.2 MiB/s) with 1 file(s) remaining
Completed 119.8 MiB/170.0 MiB (59.2 MiB/s) with 1 file(s) remaining
Completed 120.1 MiB/170.0 MiB (59.0 MiB/s) with 1 file(s) remaining
Completed 120.3 MiB/170.0 MiB (59.1 MiB/s) with 1 file(s) remaining
Completed 120.6 MiB/170.0 MiB (59.2 MiB/s) with 1 file(s) remaining
Completed 120.8 MiB/170.0 MiB (59.3 MiB/s) with 1 file(s) remaining
Completed 121.1 MiB/170.0 MiB (59.4 MiB/s) with 1 file(s) remaining
Completed 121.3 MiB/170.0 MiB (59.4 MiB/s) with 1 file(s) remaining
Completed 121.6 MiB/170.0 MiB (59.5 MiB/s) with 1 file(s) remaining
Completed 121.8 MiB/170.0 MiB (59.4 MiB/s) with 1 file(s) remaining
Completed 122.1 MiB/170.0 MiB (59.4 MiB/s) with 1 file(s) remaining
Completed 122.3 MiB/170.0 MiB (59.2 MiB/s) with 1 file(s) remaining
Completed 122.6 MiB/170.0 MiB (59.3 MiB/s) with 1 file(s) remaining
Completed 122.8 MiB/170.0 MiB (59.2 MiB/s) with 1 file(s) remaining
Completed 123.1 MiB/170.0 MiB (59.2 MiB/s) with 1 file(s) remaining
Completed 123.3 MiB/170.0 MiB (59.3 MiB/s) with 1 file(s) remaining
Completed 123.6 MiB/170.0 MiB (59.4 MiB/s) with 1 file(s) remaining
Completed 123.8 MiB/170.0 MiB (59.5 MiB/s) with 1 file(s) remaining
Completed 124.1 MiB/170.0 MiB (59.4 MiB/s) with 1 file(s) remaining
Completed 124.3 MiB/170.0 MiB (59.5 MiB/s) with 1 file(s) remaining
Completed 124.6 MiB/170.0 MiB (59.5 MiB/s) with 1 file(s) remaining
Completed 124.8 MiB/170.0 MiB (59.6 MiB/s) with 1 file(s) remaining
Completed 125.1 MiB/170.0 MiB (59.5 MiB/s) with 1 file(s) remaining
Completed 125.3 MiB/170.0 MiB (59.4 MiB/s) with 1 file(s) remaining
Completed 125.6 MiB/170.0 MiB (59.4 MiB/s) with 1 file(s) remaining
Completed 125.8 MiB/170.0 MiB (59.2 MiB/s) with 1 file(s) remaining
Completed 126.1 MiB/170.0 MiB (59.3 MiB/s) with 1 file(s) remaining
Completed 126.3 MiB/170.0 MiB (59.3 MiB/s) with 1 file(s) remaining
Completed 126.6 MiB/170.0 MiB (59.1 MiB/s) with 1 file(s) remaining
Completed 126.8 MiB/170.0 MiB (59.2 MiB/s) with 1 file(s) remaining
Completed 127.1 MiB/170.0 MiB (59.1 MiB/s) with 1 file(s) remaining
Completed 127.3 MiB/170.0 MiB (59.1 MiB/s) with 1 file(s) remaining
Completed 127.6 MiB/170.0 MiB (59.1 MiB/s) with 1 file(s) remaining
Completed 127.8 MiB/170.0 MiB (59.2 MiB/s) with 1 file(s) remaining
Completed 128.1 MiB/170.0 MiB (59.2 MiB/s) with 1 file(s) remaining
Completed 128.3 MiB/170.0 MiB (59.1 MiB/s) with 1 file(s) remaining
Completed 128.6 MiB/170.0 MiB (59.1 MiB/s) with 1 file(s) remaining
Completed 128.8 MiB/170.0 MiB (59.1 MiB/s) with 1 file(s) remaining
Completed 129.1 MiB/170.0 MiB (59.1 MiB/s) with 1 file(s) remaining
Completed 129.3 MiB/170.0 MiB (59.2 MiB/s) with 1 file(s) remaining
Completed 129.6 MiB/170.0 MiB (59.1 MiB/s) with 1 file(s) remaining
Completed 129.8 MiB/170.0 MiB (58.9 MiB/s) with 1 file(s) remaining
Completed 130.1 MiB/170.0 MiB (58.8 MiB/s) with 1 file(s) remaining
Completed 130.3 MiB/170.0 MiB (58.9 MiB/s) with 1 file(s) remaining
Completed 130.6 MiB/170.0 MiB (59.0 MiB/s) with 1 file(s) remaining
Completed 130.8 MiB/170.0 MiB (59.0 MiB/s) with 1 file(s) remaining
Completed 131.1 MiB/170.0 MiB (59.1 MiB/s) with 1 file(s) remaining
Completed 131.3 MiB/170.0 MiB (59.2 MiB/s) with 1 file(s) remaining
Completed 131.6 MiB/170.0 MiB (59.0 MiB/s) with 1 file(s) remaining
Completed 131.8 MiB/170.0 MiB (59.1 MiB/s) with 1 file(s) remaining
Completed 132.1 MiB/170.0 MiB (59.1 MiB/s) with 1 file(s) remaining
Completed 132.3 MiB/170.0 MiB (59.0 MiB/s) with 1 file(s) remaining
Completed 132.6 MiB/170.0 MiB (59.1 MiB/s) with 1 file(s) remaining
Completed 132.8 MiB/170.0 MiB (59.2 MiB/s) with 1 file(s) remaining
Completed 133.1 MiB/170.0 MiB (59.3 MiB/s) with 1 file(s) remaining
Completed 133.3 MiB/170.0 MiB (59.3 MiB/s) with 1 file(s) remaining
Completed 133.6 MiB/170.0 MiB (58.9 MiB/s) with 1 file(s) remaining
Completed 133.8 MiB/170.0 MiB (59.0 MiB/s) with 1 file(s) remaining
Completed 134.1 MiB/170.0 MiB (59.0 MiB/s) with 1 file(s) remaining
Completed 134.3 MiB/170.0 MiB (59.0 MiB/s) with 1 file(s) remaining
Completed 134.6 MiB/170.0 MiB (58.9 MiB/s) with 1 file(s) remaining
Completed 134.8 MiB/170.0 MiB (58.9 MiB/s) with 1 file(s) remaining
Completed 135.1 MiB/170.0 MiB (58.8 MiB/s) with 1 file(s) remaining
Completed 135.3 MiB/170.0 MiB (58.8 MiB/s) with 1 file(s) remaining
Completed 135.6 MiB/170.0 MiB (58.8 MiB/s) with 1 file(s) remaining
Completed 135.8 MiB/170.0 MiB (58.9 MiB/s) with 1 file(s) remaining
Completed 136.1 MiB/170.0 MiB (58.9 MiB/s) with 1 file(s) remaining
Completed 136.3 MiB/170.0 MiB (59.0 MiB/s) with 1 file(s) remaining
Completed 136.6 MiB/170.0 MiB (58.9 MiB/s) with 1 file(s) remaining
Completed 136.8 MiB/170.0 MiB (58.9 MiB/s) with 1 file(s) remaining
Completed 137.1 MiB/170.0 MiB (59.0 MiB/s) with 1 file(s) remaining
Completed 137.3 MiB/170.0 MiB (59.0 MiB/s) with 1 file(s) remaining
Completed 137.6 MiB/170.0 MiB (58.8 MiB/s) with 1 file(s) remaining
Completed 137.8 MiB/170.0 MiB (58.8 MiB/s) with 1 file(s) remaining
Completed 138.1 MiB/170.0 MiB (58.9 MiB/s) with 1 file(s) remaining
Completed 138.3 MiB/170.0 MiB (58.8 MiB/s) with 1 file(s) remaining
Completed 138.6 MiB/170.0 MiB (58.9 MiB/s) with 1 file(s) remaining
Completed 138.8 MiB/170.0 MiB (58.9 MiB/s) with 1 file(s) remaining
Completed 139.1 MiB/170.0 MiB (58.9 MiB/s) with 1 file(s) remaining
Completed 139.3 MiB/170.0 MiB (58.9 MiB/s) with 1 file(s) remaining
Completed 139.6 MiB/170.0 MiB (58.9 MiB/s) with 1 file(s) remaining
Completed 139.8 MiB/170.0 MiB (58.8 MiB/s) with 1 file(s) remaining
Completed 140.1 MiB/170.0 MiB (58.9 MiB/s) with 1 file(s) remaining
Completed 140.3 MiB/170.0 MiB (59.0 MiB/s) with 1 file(s) remaining
Completed 140.6 MiB/170.0 MiB (58.8 MiB/s) with 1 file(s) remaining
Completed 140.8 MiB/170.0 MiB (58.8 MiB/s) with 1 file(s) remaining
Completed 141.1 MiB/170.0 MiB (58.9 MiB/s) with 1 file(s) remaining
Completed 141.3 MiB/170.0 MiB (59.0 MiB/s) with 1 file(s) remaining
Completed 141.6 MiB/170.0 MiB (58.8 MiB/s) with 1 file(s) remaining
Completed 141.8 MiB/170.0 MiB (58.9 MiB/s) with 1 file(s) remaining
Completed 142.1 MiB/170.0 MiB (59.0 MiB/s) with 1 file(s) remaining
Completed 142.3 MiB/170.0 MiB (59.0 MiB/s) with 1 file(s) remaining
Completed 142.6 MiB/170.0 MiB (59.1 MiB/s) with 1 file(s) remaining
Completed 142.8 MiB/170.0 MiB (58.9 MiB/s) with 1 file(s) remaining
Completed 143.1 MiB/170.0 MiB (58.7 MiB/s) with 1 file(s) remaining
Completed 143.3 MiB/170.0 MiB (58.8 MiB/s) with 1 file(s) remaining
Completed 143.6 MiB/170.0 MiB (58.9 MiB/s) with 1 file(s) remaining
Completed 143.8 MiB/170.0 MiB (59.0 MiB/s) with 1 file(s) remaining
Completed 144.1 MiB/170.0 MiB (58.9 MiB/s) with 1 file(s) remaining
Completed 144.3 MiB/170.0 MiB (59.0 MiB/s) with 1 file(s) remaining
Completed 144.6 MiB/170.0 MiB (59.0 MiB/s) with 1 file(s) remaining
Completed 144.8 MiB/170.0 MiB (59.0 MiB/s) with 1 file(s) remaining
Completed 145.1 MiB/170.0 MiB (59.0 MiB/s) with 1 file(s) remaining
Completed 145.3 MiB/170.0 MiB (58.9 MiB/s) with 1 file(s) remaining
Completed 145.6 MiB/170.0 MiB (59.0 MiB/s) with 1 file(s) remaining
Completed 145.8 MiB/170.0 MiB (59.0 MiB/s) with 1 file(s) remaining
Completed 146.1 MiB/170.0 MiB (59.1 MiB/s) with 1 file(s) remaining
Completed 146.3 MiB/170.0 MiB (59.2 MiB/s) with 1 file(s) remaining
Completed 146.6 MiB/170.0 MiB (59.2 MiB/s) with 1 file(s) remaining
Completed 146.8 MiB/170.0 MiB (59.3 MiB/s) with 1 file(s) remaining
Completed 147.1 MiB/170.0 MiB (59.2 MiB/s) with 1 file(s) remaining
Completed 147.3 MiB/170.0 MiB (59.2 MiB/s) with 1 file(s) remaining
Completed 147.5 MiB/170.0 MiB (59.2 MiB/s) with 1 file(s) remaining
Completed 147.7 MiB/170.0 MiB (59.3 MiB/s) with 1 file(s) remaining
Completed 148.0 MiB/170.0 MiB (59.3 MiB/s) with 1 file(s) remaining
Completed 148.2 MiB/170.0 MiB (59.2 MiB/s) with 1 file(s) remaining
Completed 148.5 MiB/170.0 MiB (59.3 MiB/s) with 1 file(s) remaining
Completed 148.7 MiB/170.0 MiB (59.1 MiB/s) with 1 file(s) remaining
Completed 149.0 MiB/170.0 MiB (59.2 MiB/s) with 1 file(s) remaining
Completed 149.2 MiB/170.0 MiB (59.1 MiB/s) with 1 file(s) remaining
Completed 149.5 MiB/170.0 MiB (59.1 MiB/s) with 1 file(s) remaining
Completed 149.7 MiB/170.0 MiB (59.1 MiB/s) with 1 file(s) remaining
Completed 150.0 MiB/170.0 MiB (59.2 MiB/s) with 1 file(s) remaining
Completed 150.2 MiB/170.0 MiB (59.2 MiB/s) with 1 file(s) remaining
Completed 150.5 MiB/170.0 MiB (59.0 MiB/s) with 1 file(s) remaining
Completed 150.7 MiB/170.0 MiB (59.1 MiB/s) with 1 file(s) remaining
Completed 151.0 MiB/170.0 MiB (59.1 MiB/s) with 1 file(s) remaining
Completed 151.2 MiB/170.0 MiB (59.1 MiB/s) with 1 file(s) remaining
Completed 151.5 MiB/170.0 MiB (58.9 MiB/s) with 1 file(s) remaining
Completed 151.7 MiB/170.0 MiB (59.0 MiB/s) with 1 file(s) remaining
Completed 152.0 MiB/170.0 MiB (59.0 MiB/s) with 1 file(s) remaining
Completed 152.2 MiB/170.0 MiB (58.9 MiB/s) with 1 file(s) remaining
Completed 152.5 MiB/170.0 MiB (58.9 MiB/s) with 1 file(s) remaining
Completed 152.7 MiB/170.0 MiB (58.7 MiB/s) with 1 file(s) remaining
Completed 153.0 MiB/170.0 MiB (58.7 MiB/s) with 1 file(s) remaining
Completed 153.2 MiB/170.0 MiB (58.8 MiB/s) with 1 file(s) remaining
Completed 153.5 MiB/170.0 MiB (58.6 MiB/s) with 1 file(s) remaining
Completed 153.7 MiB/170.0 MiB (58.6 MiB/s) with 1 file(s) remaining
Completed 154.0 MiB/170.0 MiB (58.7 MiB/s) with 1 file(s) remaining
Completed 154.2 MiB/170.0 MiB (58.7 MiB/s) with 1 file(s) remaining
Completed 154.5 MiB/170.0 MiB (58.6 MiB/s) with 1 file(s) remaining
Completed 154.7 MiB/170.0 MiB (58.7 MiB/s) with 1 file(s) remaining
Completed 155.0 MiB/170.0 MiB (58.6 MiB/s) with 1 file(s) remaining
Completed 155.2 MiB/170.0 MiB (58.6 MiB/s) with 1 file(s) remaining
Completed 155.5 MiB/170.0 MiB (58.6 MiB/s) with 1 file(s) remaining
Completed 155.7 MiB/170.0 MiB (58.5 MiB/s) with 1 file(s) remaining
Completed 156.0 MiB/170.0 MiB (58.5 MiB/s) with 1 file(s) remaining
Completed 156.2 MiB/170.0 MiB (58.6 MiB/s) with 1 file(s) remaining
Completed 156.5 MiB/170.0 MiB (58.6 MiB/s) with 1 file(s) remaining
Completed 156.7 MiB/170.0 MiB (58.4 MiB/s) with 1 file(s) remaining
Completed 157.0 MiB/170.0 MiB (58.5 MiB/s) with 1 file(s) remaining
Completed 157.2 MiB/170.0 MiB (58.5 MiB/s) with 1 file(s) remaining
Completed 157.5 MiB/170.0 MiB (58.6 MiB/s) with 1 file(s) remaining
Completed 157.7 MiB/170.0 MiB (58.4 MiB/s) with 1 file(s) remaining
Completed 158.0 MiB/170.0 MiB (58.4 MiB/s) with 1 file(s) remaining
Completed 158.2 MiB/170.0 MiB (58.5 MiB/s) with 1 file(s) remaining
Completed 158.5 MiB/170.0 MiB (58.5 MiB/s) with 1 file(s) remaining
Completed 158.7 MiB/170.0 MiB (58.4 MiB/s) with 1 file(s) remaining
Completed 159.0 MiB/170.0 MiB (58.4 MiB/s) with 1 file(s) remaining
Completed 159.2 MiB/170.0 MiB (58.3 MiB/s) with 1 file(s) remaining
Completed 159.5 MiB/170.0 MiB (58.4 MiB/s) with 1 file(s) remaining
Completed 159.7 MiB/170.0 MiB (58.3 MiB/s) with 1 file(s) remaining
Completed 160.0 MiB/170.0 MiB (58.3 MiB/s) with 1 file(s) remaining
Completed 160.2 MiB/170.0 MiB (58.2 MiB/s) with 1 file(s) remaining
Completed 160.5 MiB/170.0 MiB (58.3 MiB/s) with 1 file(s) remaining
Completed 160.7 MiB/170.0 MiB (58.3 MiB/s) with 1 file(s) remaining
Completed 161.0 MiB/170.0 MiB (58.2 MiB/s) with 1 file(s) remaining
Completed 161.2 MiB/170.0 MiB (58.3 MiB/s) with 1 file(s) remaining
Completed 161.5 MiB/170.0 MiB (58.3 MiB/s) with 1 file(s) remaining
Completed 161.7 MiB/170.0 MiB (58.2 MiB/s) with 1 file(s) remaining
Completed 162.0 MiB/170.0 MiB (58.2 MiB/s) with 1 file(s) remaining
Completed 162.2 MiB/170.0 MiB (58.3 MiB/s) with 1 file(s) remaining
Completed 162.5 MiB/170.0 MiB (58.2 MiB/s) with 1 file(s) remaining
Completed 162.7 MiB/170.0 MiB (58.2 MiB/s) with 1 file(s) remaining
Completed 163.0 MiB/170.0 MiB (58.2 MiB/s) with 1 file(s) remaining
Completed 163.2 MiB/170.0 MiB (58.2 MiB/s) with 1 file(s) remaining
Completed 163.5 MiB/170.0 MiB (58.2 MiB/s) with 1 file(s) remaining
Completed 163.7 MiB/170.0 MiB (58.2 MiB/s) with 1 file(s) remaining
Completed 164.0 MiB/170.0 MiB (58.1 MiB/s) with 1 file(s) remaining
Completed 164.2 MiB/170.0 MiB (57.9 MiB/s) with 1 file(s) remaining
Completed 164.5 MiB/170.0 MiB (58.0 MiB/s) with 1 file(s) remaining
Completed 164.7 MiB/170.0 MiB (57.5 MiB/s) with 1 file(s) remaining
Completed 165.0 MiB/170.0 MiB (57.5 MiB/s) with 1 file(s) remaining
Completed 165.2 MiB/170.0 MiB (57.2 MiB/s) with 1 file(s) remaining
Completed 165.5 MiB/170.0 MiB (57.1 MiB/s) with 1 file(s) remaining
Completed 165.7 MiB/170.0 MiB (57.1 MiB/s) with 1 file(s) remaining
Completed 166.0 MiB/170.0 MiB (56.9 MiB/s) with 1 file(s) remaining
Completed 166.2 MiB/170.0 MiB (56.8 MiB/s) with 1 file(s) remaining
Completed 166.5 MiB/170.0 MiB (56.6 MiB/s) with 1 file(s) remaining
Completed 166.7 MiB/170.0 MiB (56.6 MiB/s) with 1 file(s) remaining
Completed 167.0 MiB/170.0 MiB (56.5 MiB/s) with 1 file(s) remaining
Completed 167.2 MiB/170.0 MiB (56.4 MiB/s) with 1 file(s) remaining
Completed 167.5 MiB/170.0 MiB (56.3 MiB/s) with 1 file(s) remaining
Completed 167.7 MiB/170.0 MiB (56.2 MiB/s) with 1 file(s) remaining
Completed 168.0 MiB/170.0 MiB (56.2 MiB/s) with 1 file(s) remaining
Completed 168.2 MiB/170.0 MiB (56.0 MiB/s) with 1 file(s) remaining
Completed 168.5 MiB/170.0 MiB (56.0 MiB/s) with 1 file(s) remaining
Completed 168.7 MiB/170.0 MiB (55.8 MiB/s) with 1 file(s) remaining
Completed 169.0 MiB/170.0 MiB (55.4 MiB/s) with 1 file(s) remaining
Completed 169.2 MiB/170.0 MiB (55.1 MiB/s) with 1 file(s) remaining
Completed 169.5 MiB/170.0 MiB (54.9 MiB/s) with 1 file(s) remaining
Completed 169.7 MiB/170.0 MiB (54.6 MiB/s) with 1 file(s) remaining
Completed 170.0 MiB/170.0 MiB (54.3 MiB/s) with 1 file(s) remaining
download: s3://dmap-epa-prod-anotedata/RShade/HUC4/HUC4_Boundary.shp to data/HUC4/HUC4_Boundary.shp
Completed 5 Bytes/25.4 MiB (59 Bytes/s) with 8 file(s) remaining
download: s3://dmap-epa-prod-anotedata/RShade/HLR/HLR.cpg to data/HLR/HLR.cpg
Completed 5 Bytes/25.4 MiB (59 Bytes/s) with 7 file(s) remaining
Completed 121 Bytes/25.4 MiB (975 Bytes/s) with 7 file(s) remaining
Completed 902 Bytes/25.4 MiB (6.9 KiB/s) with 7 file(s) remaining
Completed 1.3 KiB/25.4 MiB (9.8 KiB/s) with 7 file(s) remaining
Completed 10.0 KiB/25.4 MiB (71.5 KiB/s) with 7 file(s) remaining
Completed 10.3 KiB/25.4 MiB (72.8 KiB/s) with 7 file(s) remaining
download: s3://dmap-epa-prod-anotedata/RShade/HLR/HLR.sbx to data/HLR/HLR.sbx
Completed 10.3 KiB/25.4 MiB (72.8 KiB/s) with 6 file(s) remaining
download: s3://dmap-epa-prod-anotedata/RShade/HLR/HLR.dbf to data/HLR/HLR.dbf
Completed 10.3 KiB/25.4 MiB (72.8 KiB/s) with 5 file(s) remaining
Completed 10.5 KiB/25.4 MiB (66.9 KiB/s) with 5 file(s) remaining
download: s3://dmap-epa-prod-anotedata/RShade/HLR/HLR.prj to data/HLR/HLR.prj
Completed 10.5 KiB/25.4 MiB (66.9 KiB/s) with 4 file(s) remaining
download: s3://dmap-epa-prod-anotedata/RShade/HLR/HLR.shp.xml to data/HLR/HLR.shp.xml
Completed 10.5 KiB/25.4 MiB (66.9 KiB/s) with 3 file(s) remaining
download: s3://dmap-epa-prod-anotedata/RShade/HLR/HLR.sbn to data/HLR/HLR.sbn
Completed 10.5 KiB/25.4 MiB (66.9 KiB/s) with 2 file(s) remaining
download: s3://dmap-epa-prod-anotedata/RShade/HLR/HLR.shx to data/HLR/HLR.shx
Completed 10.5 KiB/25.4 MiB (66.9 KiB/s) with 1 file(s) remaining
Completed 266.5 KiB/25.4 MiB (994.2 KiB/s) with 1 file(s) remaining
Completed 522.5 KiB/25.4 MiB (1.9 MiB/s) with 1 file(s) remaining
Completed 778.5 KiB/25.4 MiB (2.7 MiB/s) with 1 file(s) remaining
Completed 1.0 MiB/25.4 MiB (3.5 MiB/s) with 1 file(s) remaining
Completed 1.3 MiB/25.4 MiB (4.2 MiB/s) with 1 file(s) remaining
Completed 1.5 MiB/25.4 MiB (4.9 MiB/s) with 1 file(s) remaining
Completed 1.8 MiB/25.4 MiB (5.6 MiB/s) with 1 file(s) remaining
Completed 2.0 MiB/25.4 MiB (6.4 MiB/s) with 1 file(s) remaining
Completed 2.3 MiB/25.4 MiB (7.1 MiB/s) with 1 file(s) remaining
Completed 2.5 MiB/25.4 MiB (7.6 MiB/s) with 1 file(s) remaining
Completed 2.8 MiB/25.4 MiB (8.3 MiB/s) with 1 file(s) remaining
Completed 3.0 MiB/25.4 MiB (8.9 MiB/s) with 1 file(s) remaining
Completed 3.3 MiB/25.4 MiB (9.6 MiB/s) with 1 file(s) remaining
Completed 3.5 MiB/25.4 MiB (9.8 MiB/s) with 1 file(s) remaining
Completed 3.8 MiB/25.4 MiB (10.4 MiB/s) with 1 file(s) remaining
Completed 4.0 MiB/25.4 MiB (11.0 MiB/s) with 1 file(s) remaining
Completed 4.3 MiB/25.4 MiB (11.6 MiB/s) with 1 file(s) remaining
Completed 4.5 MiB/25.4 MiB (11.8 MiB/s) with 1 file(s) remaining
Completed 4.8 MiB/25.4 MiB (12.4 MiB/s) with 1 file(s) remaining
Completed 5.0 MiB/25.4 MiB (13.0 MiB/s) with 1 file(s) remaining
Completed 5.3 MiB/25.4 MiB (13.4 MiB/s) with 1 file(s) remaining
Completed 5.5 MiB/25.4 MiB (14.0 MiB/s) with 1 file(s) remaining
Completed 5.8 MiB/25.4 MiB (14.4 MiB/s) with 1 file(s) remaining
Completed 6.0 MiB/25.4 MiB (15.0 MiB/s) with 1 file(s) remaining
Completed 6.3 MiB/25.4 MiB (15.6 MiB/s) with 1 file(s) remaining
Completed 6.5 MiB/25.4 MiB (16.0 MiB/s) with 1 file(s) remaining
Completed 6.8 MiB/25.4 MiB (16.5 MiB/s) with 1 file(s) remaining
Completed 7.0 MiB/25.4 MiB (16.8 MiB/s) with 1 file(s) remaining
Completed 7.3 MiB/25.4 MiB (16.6 MiB/s) with 1 file(s) remaining
Completed 7.5 MiB/25.4 MiB (16.1 MiB/s) with 1 file(s) remaining
Completed 7.8 MiB/25.4 MiB (16.3 MiB/s) with 1 file(s) remaining
Completed 8.0 MiB/25.4 MiB (16.8 MiB/s) with 1 file(s) remaining
Completed 8.3 MiB/25.4 MiB (17.0 MiB/s) with 1 file(s) remaining
Completed 8.5 MiB/25.4 MiB (16.5 MiB/s) with 1 file(s) remaining
Completed 8.8 MiB/25.4 MiB (16.9 MiB/s) with 1 file(s) remaining
Completed 9.0 MiB/25.4 MiB (16.7 MiB/s) with 1 file(s) remaining
Completed 9.3 MiB/25.4 MiB (17.1 MiB/s) with 1 file(s) remaining
Completed 9.5 MiB/25.4 MiB (17.5 MiB/s) with 1 file(s) remaining
Completed 9.7 MiB/25.4 MiB (17.8 MiB/s) with 1 file(s) remaining
Completed 9.9 MiB/25.4 MiB (18.1 MiB/s) with 1 file(s) remaining
Completed 10.2 MiB/25.4 MiB (17.7 MiB/s) with 1 file(s) remaining
Completed 10.4 MiB/25.4 MiB (18.0 MiB/s) with 1 file(s) remaining
Completed 10.7 MiB/25.4 MiB (18.2 MiB/s) with 1 file(s) remaining
Completed 10.9 MiB/25.4 MiB (18.5 MiB/s) with 1 file(s) remaining
Completed 11.2 MiB/25.4 MiB (18.9 MiB/s) with 1 file(s) remaining
Completed 11.4 MiB/25.4 MiB (19.2 MiB/s) with 1 file(s) remaining
Completed 11.7 MiB/25.4 MiB (19.6 MiB/s) with 1 file(s) remaining
Completed 11.9 MiB/25.4 MiB (20.0 MiB/s) with 1 file(s) remaining
Completed 12.2 MiB/25.4 MiB (20.3 MiB/s) with 1 file(s) remaining
Completed 12.4 MiB/25.4 MiB (20.6 MiB/s) with 1 file(s) remaining
Completed 12.7 MiB/25.4 MiB (21.0 MiB/s) with 1 file(s) remaining
Completed 12.9 MiB/25.4 MiB (21.3 MiB/s) with 1 file(s) remaining
Completed 13.2 MiB/25.4 MiB (21.7 MiB/s) with 1 file(s) remaining
Completed 13.4 MiB/25.4 MiB (21.8 MiB/s) with 1 file(s) remaining
Completed 13.7 MiB/25.4 MiB (21.7 MiB/s) with 1 file(s) remaining
Completed 13.9 MiB/25.4 MiB (22.0 MiB/s) with 1 file(s) remaining
Completed 14.2 MiB/25.4 MiB (22.4 MiB/s) with 1 file(s) remaining
Completed 14.4 MiB/25.4 MiB (22.8 MiB/s) with 1 file(s) remaining
Completed 14.7 MiB/25.4 MiB (23.1 MiB/s) with 1 file(s) remaining
Completed 14.9 MiB/25.4 MiB (23.5 MiB/s) with 1 file(s) remaining
Completed 15.2 MiB/25.4 MiB (23.8 MiB/s) with 1 file(s) remaining
Completed 15.4 MiB/25.4 MiB (24.2 MiB/s) with 1 file(s) remaining
Completed 15.7 MiB/25.4 MiB (24.5 MiB/s) with 1 file(s) remaining
Completed 15.9 MiB/25.4 MiB (24.8 MiB/s) with 1 file(s) remaining
Completed 16.2 MiB/25.4 MiB (24.8 MiB/s) with 1 file(s) remaining
Completed 16.4 MiB/25.4 MiB (24.9 MiB/s) with 1 file(s) remaining
Completed 16.7 MiB/25.4 MiB (25.2 MiB/s) with 1 file(s) remaining
Completed 16.9 MiB/25.4 MiB (25.5 MiB/s) with 1 file(s) remaining
Completed 17.2 MiB/25.4 MiB (25.6 MiB/s) with 1 file(s) remaining
Completed 17.4 MiB/25.4 MiB (25.7 MiB/s) with 1 file(s) remaining
Completed 17.7 MiB/25.4 MiB (25.9 MiB/s) with 1 file(s) remaining
Completed 17.9 MiB/25.4 MiB (25.8 MiB/s) with 1 file(s) remaining
Completed 18.2 MiB/25.4 MiB (25.1 MiB/s) with 1 file(s) remaining
Completed 18.4 MiB/25.4 MiB (24.5 MiB/s) with 1 file(s) remaining
Completed 18.7 MiB/25.4 MiB (24.0 MiB/s) with 1 file(s) remaining
Completed 18.9 MiB/25.4 MiB (23.5 MiB/s) with 1 file(s) remaining
Completed 19.2 MiB/25.4 MiB (23.1 MiB/s) with 1 file(s) remaining
Completed 19.4 MiB/25.4 MiB (22.7 MiB/s) with 1 file(s) remaining
Completed 19.7 MiB/25.4 MiB (22.4 MiB/s) with 1 file(s) remaining
Completed 19.9 MiB/25.4 MiB (22.1 MiB/s) with 1 file(s) remaining
Completed 20.2 MiB/25.4 MiB (21.7 MiB/s) with 1 file(s) remaining
Completed 20.4 MiB/25.4 MiB (21.4 MiB/s) with 1 file(s) remaining
Completed 20.7 MiB/25.4 MiB (21.3 MiB/s) with 1 file(s) remaining
Completed 20.9 MiB/25.4 MiB (21.5 MiB/s) with 1 file(s) remaining
Completed 21.2 MiB/25.4 MiB (21.6 MiB/s) with 1 file(s) remaining
Completed 21.4 MiB/25.4 MiB (21.8 MiB/s) with 1 file(s) remaining
Completed 21.7 MiB/25.4 MiB (21.7 MiB/s) with 1 file(s) remaining
Completed 21.9 MiB/25.4 MiB (21.8 MiB/s) with 1 file(s) remaining
Completed 22.2 MiB/25.4 MiB (21.9 MiB/s) with 1 file(s) remaining
Completed 22.4 MiB/25.4 MiB (22.0 MiB/s) with 1 file(s) remaining
Completed 22.7 MiB/25.4 MiB (22.2 MiB/s) with 1 file(s) remaining
Completed 22.9 MiB/25.4 MiB (22.4 MiB/s) with 1 file(s) remaining
Completed 23.2 MiB/25.4 MiB (22.6 MiB/s) with 1 file(s) remaining
Completed 23.4 MiB/25.4 MiB (22.5 MiB/s) with 1 file(s) remaining
Completed 23.7 MiB/25.4 MiB (22.4 MiB/s) with 1 file(s) remaining
Completed 23.9 MiB/25.4 MiB (22.2 MiB/s) with 1 file(s) remaining
Completed 24.2 MiB/25.4 MiB (22.1 MiB/s) with 1 file(s) remaining
Completed 24.4 MiB/25.4 MiB (21.9 MiB/s) with 1 file(s) remaining
Completed 24.7 MiB/25.4 MiB (21.8 MiB/s) with 1 file(s) remaining
Completed 24.9 MiB/25.4 MiB (21.6 MiB/s) with 1 file(s) remaining
Completed 25.2 MiB/25.4 MiB (21.6 MiB/s) with 1 file(s) remaining
Completed 25.4 MiB/25.4 MiB (21.5 MiB/s) with 1 file(s) remaining
download: s3://dmap-epa-prod-anotedata/RShade/HLR/HLR.shp to data/HLR/HLR.shp
Initialization Complete
source("R/RShade.R")
This step imports your NHDPlus HR lines, retrieves the correct columns, and gets is into the correct coordinate system.
nhdr_lines <- read_nhdplus_lines(input_lines, input_lines_feature_name)
Reading NHDPlus HR Dataset
Shapefile detected. Importing into RShade...
Calculating Aspect
NHDPlus HR Line Import Complete
This step generates sample points at 50 meter intervals along your input dataset. Keep in mind the output changes each time this is run. This may take a few minutes, especially if your input dataset is large.
shade_points <- sample_shade_points(nhdr_lines, sample_point_distance)
Dissolving Flowlines
Generating Shade Points
Shade Point Generation Complete
This step calculates the bankfull width (BFW) of each shade point. By default, this function will start by using a mathematical equation to calculate BFW and then move on to checking for available river/stream boundary polygons and measuring the BFW of applicable shade points using the length of perpendicular transects of these polygons. If you wish to only use the equation, set “use.transect” to FALSE.
This step downloads one or more geodatabases, and may take a few minutes.
RShade_points <- calc_BFW(shade_points, nhdr_lines, hlr, external_BFW_table, use.transect = TRUE)
This step adds and populates latitude and longitude fields.
RShade_points <- add_latlon(RShade_points)
Latitude and Longitude Calculations Completed
This step retrieves the elevation in meters from an input raster at each point and puts those values in the elevation field. This step involves downloading what could be a fairly large raster dataset, which could take a few minutes. Each raster only needs to be downloaded the first time it is used.
RShade_points <- extract_elevation(RShade_points, rpu_boundaries)
Fetching Raster Datasets
Completed 256.0 KiB/283.6 MiB (1021.7 KiB/s) with 1 file(s) remaining
Completed 512.0 KiB/283.6 MiB (1.9 MiB/s) with 1 file(s) remaining
Completed 768.0 KiB/283.6 MiB (2.8 MiB/s) with 1 file(s) remaining
Completed 1.0 MiB/283.6 MiB (3.7 MiB/s) with 1 file(s) remaining
Completed 1.2 MiB/283.6 MiB (4.4 MiB/s) with 1 file(s) remaining
Completed 1.5 MiB/283.6 MiB (5.3 MiB/s) with 1 file(s) remaining
Completed 1.8 MiB/283.6 MiB (6.0 MiB/s) with 1 file(s) remaining
Completed 2.0 MiB/283.6 MiB (6.7 MiB/s) with 1 file(s) remaining
Completed 2.2 MiB/283.6 MiB (7.5 MiB/s) with 1 file(s) remaining
Completed 2.5 MiB/283.6 MiB (8.0 MiB/s) with 1 file(s) remaining
Completed 2.8 MiB/283.6 MiB (8.6 MiB/s) with 1 file(s) remaining
Completed 3.0 MiB/283.6 MiB (8.9 MiB/s) with 1 file(s) remaining
Completed 3.2 MiB/283.6 MiB (9.4 MiB/s) with 1 file(s) remaining
Completed 3.5 MiB/283.6 MiB (10.0 MiB/s) with 1 file(s) remaining
Completed 3.8 MiB/283.6 MiB (10.7 MiB/s) with 1 file(s) remaining
Completed 4.0 MiB/283.6 MiB (11.4 MiB/s) with 1 file(s) remaining
Completed 4.2 MiB/283.6 MiB (12.0 MiB/s) with 1 file(s) remaining
Completed 4.5 MiB/283.6 MiB (12.4 MiB/s) with 1 file(s) remaining
Completed 4.8 MiB/283.6 MiB (13.1 MiB/s) with 1 file(s) remaining
Completed 5.0 MiB/283.6 MiB (13.7 MiB/s) with 1 file(s) remaining
Completed 5.2 MiB/283.6 MiB (14.3 MiB/s) with 1 file(s) remaining
Completed 5.5 MiB/283.6 MiB (15.0 MiB/s) with 1 file(s) remaining
Completed 5.8 MiB/283.6 MiB (15.5 MiB/s) with 1 file(s) remaining
Completed 6.0 MiB/283.6 MiB (16.2 MiB/s) with 1 file(s) remaining
Completed 6.2 MiB/283.6 MiB (16.8 MiB/s) with 1 file(s) remaining
Completed 6.5 MiB/283.6 MiB (17.4 MiB/s) with 1 file(s) remaining
Completed 6.8 MiB/283.6 MiB (17.9 MiB/s) with 1 file(s) remaining
Completed 7.0 MiB/283.6 MiB (18.5 MiB/s) with 1 file(s) remaining
Completed 7.2 MiB/283.6 MiB (18.6 MiB/s) with 1 file(s) remaining
Completed 7.5 MiB/283.6 MiB (19.2 MiB/s) with 1 file(s) remaining
Completed 7.8 MiB/283.6 MiB (19.6 MiB/s) with 1 file(s) remaining
Completed 8.0 MiB/283.6 MiB (20.1 MiB/s) with 1 file(s) remaining
Completed 8.2 MiB/283.6 MiB (20.2 MiB/s) with 1 file(s) remaining
Completed 8.5 MiB/283.6 MiB (20.8 MiB/s) with 1 file(s) remaining
Completed 8.8 MiB/283.6 MiB (21.4 MiB/s) with 1 file(s) remaining
Completed 9.0 MiB/283.6 MiB (21.7 MiB/s) with 1 file(s) remaining
Completed 9.2 MiB/283.6 MiB (22.1 MiB/s) with 1 file(s) remaining
Completed 9.5 MiB/283.6 MiB (22.6 MiB/s) with 1 file(s) remaining
Completed 9.8 MiB/283.6 MiB (23.1 MiB/s) with 1 file(s) remaining
Completed 10.0 MiB/283.6 MiB (23.5 MiB/s) with 1 file(s) remaining
Completed 10.2 MiB/283.6 MiB (24.0 MiB/s) with 1 file(s) remaining
Completed 10.5 MiB/283.6 MiB (24.0 MiB/s) with 1 file(s) remaining
Completed 10.8 MiB/283.6 MiB (24.4 MiB/s) with 1 file(s) remaining
Completed 11.0 MiB/283.6 MiB (24.7 MiB/s) with 1 file(s) remaining
Completed 11.2 MiB/283.6 MiB (25.2 MiB/s) with 1 file(s) remaining
Completed 11.5 MiB/283.6 MiB (25.6 MiB/s) with 1 file(s) remaining
Completed 11.8 MiB/283.6 MiB (25.7 MiB/s) with 1 file(s) remaining
Completed 12.0 MiB/283.6 MiB (26.1 MiB/s) with 1 file(s) remaining
Completed 12.2 MiB/283.6 MiB (26.0 MiB/s) with 1 file(s) remaining
Completed 12.5 MiB/283.6 MiB (26.5 MiB/s) with 1 file(s) remaining
Completed 12.8 MiB/283.6 MiB (27.0 MiB/s) with 1 file(s) remaining
Completed 13.0 MiB/283.6 MiB (27.4 MiB/s) with 1 file(s) remaining
Completed 13.2 MiB/283.6 MiB (27.5 MiB/s) with 1 file(s) remaining
Completed 13.5 MiB/283.6 MiB (27.9 MiB/s) with 1 file(s) remaining
Completed 13.8 MiB/283.6 MiB (27.6 MiB/s) with 1 file(s) remaining
Completed 14.0 MiB/283.6 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 14.2 MiB/283.6 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 14.5 MiB/283.6 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 14.8 MiB/283.6 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 15.0 MiB/283.6 MiB (29.6 MiB/s) with 1 file(s) remaining
Completed 15.2 MiB/283.6 MiB (30.1 MiB/s) with 1 file(s) remaining
Completed 15.5 MiB/283.6 MiB (30.1 MiB/s) with 1 file(s) remaining
Completed 15.8 MiB/283.6 MiB (30.1 MiB/s) with 1 file(s) remaining
Completed 16.0 MiB/283.6 MiB (30.4 MiB/s) with 1 file(s) remaining
Completed 16.2 MiB/283.6 MiB (30.5 MiB/s) with 1 file(s) remaining
Completed 16.5 MiB/283.6 MiB (30.9 MiB/s) with 1 file(s) remaining
Completed 16.8 MiB/283.6 MiB (30.9 MiB/s) with 1 file(s) remaining
Completed 17.0 MiB/283.6 MiB (31.3 MiB/s) with 1 file(s) remaining
Completed 17.2 MiB/283.6 MiB (31.5 MiB/s) with 1 file(s) remaining
Completed 17.5 MiB/283.6 MiB (31.9 MiB/s) with 1 file(s) remaining
Completed 17.8 MiB/283.6 MiB (31.8 MiB/s) with 1 file(s) remaining
Completed 18.0 MiB/283.6 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 18.2 MiB/283.6 MiB (31.9 MiB/s) with 1 file(s) remaining
Completed 18.5 MiB/283.6 MiB (32.3 MiB/s) with 1 file(s) remaining
Completed 18.8 MiB/283.6 MiB (32.4 MiB/s) with 1 file(s) remaining
Completed 19.0 MiB/283.6 MiB (32.8 MiB/s) with 1 file(s) remaining
Completed 19.2 MiB/283.6 MiB (33.0 MiB/s) with 1 file(s) remaining
Completed 19.5 MiB/283.6 MiB (32.9 MiB/s) with 1 file(s) remaining
Completed 19.8 MiB/283.6 MiB (33.2 MiB/s) with 1 file(s) remaining
Completed 20.0 MiB/283.6 MiB (33.6 MiB/s) with 1 file(s) remaining
Completed 20.2 MiB/283.6 MiB (33.5 MiB/s) with 1 file(s) remaining
Completed 20.5 MiB/283.6 MiB (33.9 MiB/s) with 1 file(s) remaining
Completed 20.8 MiB/283.6 MiB (34.0 MiB/s) with 1 file(s) remaining
Completed 21.0 MiB/283.6 MiB (34.2 MiB/s) with 1 file(s) remaining
Completed 21.2 MiB/283.6 MiB (34.4 MiB/s) with 1 file(s) remaining
Completed 21.5 MiB/283.6 MiB (34.2 MiB/s) with 1 file(s) remaining
Completed 21.8 MiB/283.6 MiB (34.2 MiB/s) with 1 file(s) remaining
Completed 22.0 MiB/283.6 MiB (34.4 MiB/s) with 1 file(s) remaining
Completed 22.2 MiB/283.6 MiB (34.6 MiB/s) with 1 file(s) remaining
Completed 22.5 MiB/283.6 MiB (34.8 MiB/s) with 1 file(s) remaining
Completed 22.8 MiB/283.6 MiB (35.1 MiB/s) with 1 file(s) remaining
Completed 23.0 MiB/283.6 MiB (35.4 MiB/s) with 1 file(s) remaining
Completed 23.2 MiB/283.6 MiB (35.7 MiB/s) with 1 file(s) remaining
Completed 23.5 MiB/283.6 MiB (35.9 MiB/s) with 1 file(s) remaining
Completed 23.8 MiB/283.6 MiB (36.2 MiB/s) with 1 file(s) remaining
Completed 24.0 MiB/283.6 MiB (36.0 MiB/s) with 1 file(s) remaining
Completed 24.2 MiB/283.6 MiB (36.3 MiB/s) with 1 file(s) remaining
Completed 24.5 MiB/283.6 MiB (36.6 MiB/s) with 1 file(s) remaining
Completed 24.8 MiB/283.6 MiB (36.7 MiB/s) with 1 file(s) remaining
Completed 25.0 MiB/283.6 MiB (36.9 MiB/s) with 1 file(s) remaining
Completed 25.2 MiB/283.6 MiB (36.9 MiB/s) with 1 file(s) remaining
Completed 25.5 MiB/283.6 MiB (36.8 MiB/s) with 1 file(s) remaining
Completed 25.8 MiB/283.6 MiB (37.1 MiB/s) with 1 file(s) remaining
Completed 26.0 MiB/283.6 MiB (37.1 MiB/s) with 1 file(s) remaining
Completed 26.2 MiB/283.6 MiB (37.3 MiB/s) with 1 file(s) remaining
Completed 26.5 MiB/283.6 MiB (37.6 MiB/s) with 1 file(s) remaining
Completed 26.8 MiB/283.6 MiB (37.8 MiB/s) with 1 file(s) remaining
Completed 27.0 MiB/283.6 MiB (38.0 MiB/s) with 1 file(s) remaining
Completed 27.2 MiB/283.6 MiB (38.3 MiB/s) with 1 file(s) remaining
Completed 27.5 MiB/283.6 MiB (38.6 MiB/s) with 1 file(s) remaining
Completed 27.8 MiB/283.6 MiB (38.8 MiB/s) with 1 file(s) remaining
Completed 28.0 MiB/283.6 MiB (38.9 MiB/s) with 1 file(s) remaining
Completed 28.2 MiB/283.6 MiB (39.0 MiB/s) with 1 file(s) remaining
Completed 28.5 MiB/283.6 MiB (39.3 MiB/s) with 1 file(s) remaining
Completed 28.8 MiB/283.6 MiB (39.1 MiB/s) with 1 file(s) remaining
Completed 29.0 MiB/283.6 MiB (39.2 MiB/s) with 1 file(s) remaining
Completed 29.2 MiB/283.6 MiB (39.4 MiB/s) with 1 file(s) remaining
Completed 29.5 MiB/283.6 MiB (39.3 MiB/s) with 1 file(s) remaining
Completed 29.8 MiB/283.6 MiB (39.4 MiB/s) with 1 file(s) remaining
Completed 30.0 MiB/283.6 MiB (39.6 MiB/s) with 1 file(s) remaining
Completed 30.2 MiB/283.6 MiB (39.6 MiB/s) with 1 file(s) remaining
Completed 30.5 MiB/283.6 MiB (39.7 MiB/s) with 1 file(s) remaining
Completed 30.8 MiB/283.6 MiB (39.9 MiB/s) with 1 file(s) remaining
Completed 31.0 MiB/283.6 MiB (40.0 MiB/s) with 1 file(s) remaining
Completed 31.2 MiB/283.6 MiB (40.0 MiB/s) with 1 file(s) remaining
Completed 31.5 MiB/283.6 MiB (40.3 MiB/s) with 1 file(s) remaining
Completed 31.8 MiB/283.6 MiB (40.5 MiB/s) with 1 file(s) remaining
Completed 32.0 MiB/283.6 MiB (40.7 MiB/s) with 1 file(s) remaining
Completed 32.2 MiB/283.6 MiB (40.7 MiB/s) with 1 file(s) remaining
Completed 32.5 MiB/283.6 MiB (40.7 MiB/s) with 1 file(s) remaining
Completed 32.8 MiB/283.6 MiB (40.6 MiB/s) with 1 file(s) remaining
Completed 33.0 MiB/283.6 MiB (40.8 MiB/s) with 1 file(s) remaining
Completed 33.2 MiB/283.6 MiB (40.9 MiB/s) with 1 file(s) remaining
Completed 33.5 MiB/283.6 MiB (41.1 MiB/s) with 1 file(s) remaining
Completed 33.8 MiB/283.6 MiB (41.4 MiB/s) with 1 file(s) remaining
Completed 34.0 MiB/283.6 MiB (41.5 MiB/s) with 1 file(s) remaining
Completed 34.2 MiB/283.6 MiB (41.1 MiB/s) with 1 file(s) remaining
Completed 34.5 MiB/283.6 MiB (41.4 MiB/s) with 1 file(s) remaining
Completed 34.8 MiB/283.6 MiB (41.7 MiB/s) with 1 file(s) remaining
Completed 35.0 MiB/283.6 MiB (41.2 MiB/s) with 1 file(s) remaining
Completed 35.2 MiB/283.6 MiB (41.3 MiB/s) with 1 file(s) remaining
Completed 35.5 MiB/283.6 MiB (41.3 MiB/s) with 1 file(s) remaining
Completed 35.8 MiB/283.6 MiB (41.5 MiB/s) with 1 file(s) remaining
Completed 36.0 MiB/283.6 MiB (41.7 MiB/s) with 1 file(s) remaining
Completed 36.2 MiB/283.6 MiB (41.5 MiB/s) with 1 file(s) remaining
Completed 36.5 MiB/283.6 MiB (41.6 MiB/s) with 1 file(s) remaining
Completed 36.8 MiB/283.6 MiB (41.9 MiB/s) with 1 file(s) remaining
Completed 37.0 MiB/283.6 MiB (41.4 MiB/s) with 1 file(s) remaining
Completed 37.2 MiB/283.6 MiB (41.6 MiB/s) with 1 file(s) remaining
Completed 37.5 MiB/283.6 MiB (41.6 MiB/s) with 1 file(s) remaining
Completed 37.8 MiB/283.6 MiB (41.9 MiB/s) with 1 file(s) remaining
Completed 38.0 MiB/283.6 MiB (42.0 MiB/s) with 1 file(s) remaining
Completed 38.2 MiB/283.6 MiB (41.6 MiB/s) with 1 file(s) remaining
Completed 38.5 MiB/283.6 MiB (41.5 MiB/s) with 1 file(s) remaining
Completed 38.8 MiB/283.6 MiB (41.7 MiB/s) with 1 file(s) remaining
Completed 39.0 MiB/283.6 MiB (41.9 MiB/s) with 1 file(s) remaining
Completed 39.2 MiB/283.6 MiB (42.0 MiB/s) with 1 file(s) remaining
Completed 39.5 MiB/283.6 MiB (41.9 MiB/s) with 1 file(s) remaining
Completed 39.8 MiB/283.6 MiB (41.7 MiB/s) with 1 file(s) remaining
Completed 40.0 MiB/283.6 MiB (41.9 MiB/s) with 1 file(s) remaining
Completed 40.2 MiB/283.6 MiB (41.8 MiB/s) with 1 file(s) remaining
Completed 40.5 MiB/283.6 MiB (41.9 MiB/s) with 1 file(s) remaining
Completed 40.8 MiB/283.6 MiB (41.9 MiB/s) with 1 file(s) remaining
Completed 41.0 MiB/283.6 MiB (42.0 MiB/s) with 1 file(s) remaining
Completed 41.2 MiB/283.6 MiB (42.1 MiB/s) with 1 file(s) remaining
Completed 41.5 MiB/283.6 MiB (42.0 MiB/s) with 1 file(s) remaining
Completed 41.8 MiB/283.6 MiB (42.0 MiB/s) with 1 file(s) remaining
Completed 42.0 MiB/283.6 MiB (41.9 MiB/s) with 1 file(s) remaining
Completed 42.2 MiB/283.6 MiB (41.9 MiB/s) with 1 file(s) remaining
Completed 42.5 MiB/283.6 MiB (42.1 MiB/s) with 1 file(s) remaining
Completed 42.8 MiB/283.6 MiB (41.9 MiB/s) with 1 file(s) remaining
Completed 43.0 MiB/283.6 MiB (42.0 MiB/s) with 1 file(s) remaining
Completed 43.2 MiB/283.6 MiB (42.2 MiB/s) with 1 file(s) remaining
Completed 43.5 MiB/283.6 MiB (42.4 MiB/s) with 1 file(s) remaining
Completed 43.8 MiB/283.6 MiB (42.6 MiB/s) with 1 file(s) remaining
Completed 44.0 MiB/283.6 MiB (42.8 MiB/s) with 1 file(s) remaining
Completed 44.2 MiB/283.6 MiB (42.6 MiB/s) with 1 file(s) remaining
Completed 44.5 MiB/283.6 MiB (42.4 MiB/s) with 1 file(s) remaining
Completed 44.8 MiB/283.6 MiB (42.6 MiB/s) with 1 file(s) remaining
Completed 45.0 MiB/283.6 MiB (42.5 MiB/s) with 1 file(s) remaining
Completed 45.2 MiB/283.6 MiB (42.7 MiB/s) with 1 file(s) remaining
Completed 45.5 MiB/283.6 MiB (42.2 MiB/s) with 1 file(s) remaining
Completed 45.8 MiB/283.6 MiB (42.4 MiB/s) with 1 file(s) remaining
Completed 46.0 MiB/283.6 MiB (42.6 MiB/s) with 1 file(s) remaining
Completed 46.2 MiB/283.6 MiB (42.5 MiB/s) with 1 file(s) remaining
Completed 46.5 MiB/283.6 MiB (42.7 MiB/s) with 1 file(s) remaining
Completed 46.8 MiB/283.6 MiB (42.9 MiB/s) with 1 file(s) remaining
Completed 47.0 MiB/283.6 MiB (42.3 MiB/s) with 1 file(s) remaining
Completed 47.2 MiB/283.6 MiB (42.4 MiB/s) with 1 file(s) remaining
Completed 47.5 MiB/283.6 MiB (42.6 MiB/s) with 1 file(s) remaining
Completed 47.8 MiB/283.6 MiB (42.8 MiB/s) with 1 file(s) remaining
Completed 48.0 MiB/283.6 MiB (42.6 MiB/s) with 1 file(s) remaining
Completed 48.2 MiB/283.6 MiB (42.8 MiB/s) with 1 file(s) remaining
Completed 48.5 MiB/283.6 MiB (42.9 MiB/s) with 1 file(s) remaining
Completed 48.8 MiB/283.6 MiB (42.5 MiB/s) with 1 file(s) remaining
Completed 49.0 MiB/283.6 MiB (42.5 MiB/s) with 1 file(s) remaining
Completed 49.2 MiB/283.6 MiB (42.6 MiB/s) with 1 file(s) remaining
Completed 49.5 MiB/283.6 MiB (42.8 MiB/s) with 1 file(s) remaining
Completed 49.8 MiB/283.6 MiB (42.9 MiB/s) with 1 file(s) remaining
Completed 50.0 MiB/283.6 MiB (42.9 MiB/s) with 1 file(s) remaining
Completed 50.2 MiB/283.6 MiB (42.6 MiB/s) with 1 file(s) remaining
Completed 50.5 MiB/283.6 MiB (42.7 MiB/s) with 1 file(s) remaining
Completed 50.8 MiB/283.6 MiB (42.5 MiB/s) with 1 file(s) remaining
Completed 51.0 MiB/283.6 MiB (42.7 MiB/s) with 1 file(s) remaining
Completed 51.2 MiB/283.6 MiB (42.6 MiB/s) with 1 file(s) remaining
Completed 51.5 MiB/283.6 MiB (42.7 MiB/s) with 1 file(s) remaining
Completed 51.8 MiB/283.6 MiB (42.8 MiB/s) with 1 file(s) remaining
Completed 52.0 MiB/283.6 MiB (42.6 MiB/s) with 1 file(s) remaining
Completed 52.2 MiB/283.6 MiB (42.5 MiB/s) with 1 file(s) remaining
Completed 52.5 MiB/283.6 MiB (42.7 MiB/s) with 1 file(s) remaining
Completed 52.8 MiB/283.6 MiB (42.8 MiB/s) with 1 file(s) remaining
Completed 53.0 MiB/283.6 MiB (43.0 MiB/s) with 1 file(s) remaining
Completed 53.2 MiB/283.6 MiB (43.1 MiB/s) with 1 file(s) remaining
Completed 53.5 MiB/283.6 MiB (43.1 MiB/s) with 1 file(s) remaining
Completed 53.8 MiB/283.6 MiB (42.9 MiB/s) with 1 file(s) remaining
Completed 54.0 MiB/283.6 MiB (42.7 MiB/s) with 1 file(s) remaining
Completed 54.2 MiB/283.6 MiB (42.6 MiB/s) with 1 file(s) remaining
Completed 54.5 MiB/283.6 MiB (42.8 MiB/s) with 1 file(s) remaining
Completed 54.8 MiB/283.6 MiB (42.9 MiB/s) with 1 file(s) remaining
Completed 55.0 MiB/283.6 MiB (42.9 MiB/s) with 1 file(s) remaining
Completed 55.2 MiB/283.6 MiB (43.0 MiB/s) with 1 file(s) remaining
Completed 55.5 MiB/283.6 MiB (42.9 MiB/s) with 1 file(s) remaining
Completed 55.8 MiB/283.6 MiB (42.9 MiB/s) with 1 file(s) remaining
Completed 56.0 MiB/283.6 MiB (43.0 MiB/s) with 1 file(s) remaining
Completed 56.2 MiB/283.6 MiB (42.9 MiB/s) with 1 file(s) remaining
Completed 56.5 MiB/283.6 MiB (42.9 MiB/s) with 1 file(s) remaining
Completed 56.8 MiB/283.6 MiB (43.1 MiB/s) with 1 file(s) remaining
Completed 57.0 MiB/283.6 MiB (43.2 MiB/s) with 1 file(s) remaining
Completed 57.2 MiB/283.6 MiB (43.3 MiB/s) with 1 file(s) remaining
Completed 57.5 MiB/283.6 MiB (43.5 MiB/s) with 1 file(s) remaining
Completed 57.8 MiB/283.6 MiB (43.1 MiB/s) with 1 file(s) remaining
Completed 58.0 MiB/283.6 MiB (43.3 MiB/s) with 1 file(s) remaining
Completed 58.2 MiB/283.6 MiB (43.4 MiB/s) with 1 file(s) remaining
Completed 58.5 MiB/283.6 MiB (43.5 MiB/s) with 1 file(s) remaining
Completed 58.8 MiB/283.6 MiB (43.6 MiB/s) with 1 file(s) remaining
Completed 59.0 MiB/283.6 MiB (42.9 MiB/s) with 1 file(s) remaining
Completed 59.2 MiB/283.6 MiB (42.7 MiB/s) with 1 file(s) remaining
Completed 59.5 MiB/283.6 MiB (42.6 MiB/s) with 1 file(s) remaining
Completed 59.8 MiB/283.6 MiB (42.8 MiB/s) with 1 file(s) remaining
Completed 60.0 MiB/283.6 MiB (42.9 MiB/s) with 1 file(s) remaining
Completed 60.2 MiB/283.6 MiB (43.1 MiB/s) with 1 file(s) remaining
Completed 60.5 MiB/283.6 MiB (42.7 MiB/s) with 1 file(s) remaining
Completed 60.8 MiB/283.6 MiB (42.8 MiB/s) with 1 file(s) remaining
Completed 61.0 MiB/283.6 MiB (42.6 MiB/s) with 1 file(s) remaining
Completed 61.2 MiB/283.6 MiB (42.5 MiB/s) with 1 file(s) remaining
Completed 61.5 MiB/283.6 MiB (42.3 MiB/s) with 1 file(s) remaining
Completed 61.8 MiB/283.6 MiB (42.2 MiB/s) with 1 file(s) remaining
Completed 62.0 MiB/283.6 MiB (41.7 MiB/s) with 1 file(s) remaining
Completed 62.2 MiB/283.6 MiB (41.6 MiB/s) with 1 file(s) remaining
Completed 62.5 MiB/283.6 MiB (41.3 MiB/s) with 1 file(s) remaining
Completed 62.8 MiB/283.6 MiB (40.9 MiB/s) with 1 file(s) remaining
Completed 63.0 MiB/283.6 MiB (41.1 MiB/s) with 1 file(s) remaining
Completed 63.2 MiB/283.6 MiB (41.0 MiB/s) with 1 file(s) remaining
Completed 63.5 MiB/283.6 MiB (40.8 MiB/s) with 1 file(s) remaining
Completed 63.8 MiB/283.6 MiB (40.9 MiB/s) with 1 file(s) remaining
Completed 64.0 MiB/283.6 MiB (40.8 MiB/s) with 1 file(s) remaining
Completed 64.2 MiB/283.6 MiB (40.8 MiB/s) with 1 file(s) remaining
Completed 64.5 MiB/283.6 MiB (40.9 MiB/s) with 1 file(s) remaining
Completed 64.8 MiB/283.6 MiB (40.5 MiB/s) with 1 file(s) remaining
Completed 65.0 MiB/283.6 MiB (40.5 MiB/s) with 1 file(s) remaining
Completed 65.2 MiB/283.6 MiB (40.5 MiB/s) with 1 file(s) remaining
Completed 65.5 MiB/283.6 MiB (40.5 MiB/s) with 1 file(s) remaining
Completed 65.8 MiB/283.6 MiB (40.6 MiB/s) with 1 file(s) remaining
Completed 66.0 MiB/283.6 MiB (40.2 MiB/s) with 1 file(s) remaining
Completed 66.2 MiB/283.6 MiB (40.3 MiB/s) with 1 file(s) remaining
Completed 66.5 MiB/283.6 MiB (40.5 MiB/s) with 1 file(s) remaining
Completed 66.8 MiB/283.6 MiB (40.6 MiB/s) with 1 file(s) remaining
Completed 67.0 MiB/283.6 MiB (40.4 MiB/s) with 1 file(s) remaining
Completed 67.2 MiB/283.6 MiB (40.0 MiB/s) with 1 file(s) remaining
Completed 67.5 MiB/283.6 MiB (40.0 MiB/s) with 1 file(s) remaining
Completed 67.8 MiB/283.6 MiB (40.1 MiB/s) with 1 file(s) remaining
Completed 68.0 MiB/283.6 MiB (39.8 MiB/s) with 1 file(s) remaining
Completed 68.2 MiB/283.6 MiB (39.9 MiB/s) with 1 file(s) remaining
Completed 68.5 MiB/283.6 MiB (40.1 MiB/s) with 1 file(s) remaining
Completed 68.8 MiB/283.6 MiB (40.1 MiB/s) with 1 file(s) remaining
Completed 69.0 MiB/283.6 MiB (39.7 MiB/s) with 1 file(s) remaining
Completed 69.2 MiB/283.6 MiB (39.4 MiB/s) with 1 file(s) remaining
Completed 69.5 MiB/283.6 MiB (39.4 MiB/s) with 1 file(s) remaining
Completed 69.8 MiB/283.6 MiB (39.5 MiB/s) with 1 file(s) remaining
Completed 70.0 MiB/283.6 MiB (39.4 MiB/s) with 1 file(s) remaining
Completed 70.2 MiB/283.6 MiB (39.0 MiB/s) with 1 file(s) remaining
Completed 70.5 MiB/283.6 MiB (38.8 MiB/s) with 1 file(s) remaining
Completed 70.8 MiB/283.6 MiB (38.9 MiB/s) with 1 file(s) remaining
Completed 71.0 MiB/283.6 MiB (39.0 MiB/s) with 1 file(s) remaining
Completed 71.2 MiB/283.6 MiB (38.8 MiB/s) with 1 file(s) remaining
Completed 71.5 MiB/283.6 MiB (38.5 MiB/s) with 1 file(s) remaining
Completed 71.8 MiB/283.6 MiB (38.5 MiB/s) with 1 file(s) remaining
Completed 72.0 MiB/283.6 MiB (38.6 MiB/s) with 1 file(s) remaining
Completed 72.2 MiB/283.6 MiB (38.5 MiB/s) with 1 file(s) remaining
Completed 72.5 MiB/283.6 MiB (38.5 MiB/s) with 1 file(s) remaining
Completed 72.8 MiB/283.6 MiB (38.6 MiB/s) with 1 file(s) remaining
Completed 73.0 MiB/283.6 MiB (38.7 MiB/s) with 1 file(s) remaining
Completed 73.2 MiB/283.6 MiB (38.6 MiB/s) with 1 file(s) remaining
Completed 73.5 MiB/283.6 MiB (38.2 MiB/s) with 1 file(s) remaining
Completed 73.8 MiB/283.6 MiB (38.2 MiB/s) with 1 file(s) remaining
Completed 74.0 MiB/283.6 MiB (38.2 MiB/s) with 1 file(s) remaining
Completed 74.2 MiB/283.6 MiB (38.3 MiB/s) with 1 file(s) remaining
Completed 74.5 MiB/283.6 MiB (38.0 MiB/s) with 1 file(s) remaining
Completed 74.8 MiB/283.6 MiB (38.1 MiB/s) with 1 file(s) remaining
Completed 75.0 MiB/283.6 MiB (38.2 MiB/s) with 1 file(s) remaining
Completed 75.2 MiB/283.6 MiB (38.3 MiB/s) with 1 file(s) remaining
Completed 75.5 MiB/283.6 MiB (38.1 MiB/s) with 1 file(s) remaining
Completed 75.8 MiB/283.6 MiB (38.1 MiB/s) with 1 file(s) remaining
Completed 76.0 MiB/283.6 MiB (38.1 MiB/s) with 1 file(s) remaining
Completed 76.2 MiB/283.6 MiB (38.2 MiB/s) with 1 file(s) remaining
Completed 76.5 MiB/283.6 MiB (38.3 MiB/s) with 1 file(s) remaining
Completed 76.8 MiB/283.6 MiB (38.0 MiB/s) with 1 file(s) remaining
Completed 77.0 MiB/283.6 MiB (38.0 MiB/s) with 1 file(s) remaining
Completed 77.2 MiB/283.6 MiB (38.0 MiB/s) with 1 file(s) remaining
Completed 77.5 MiB/283.6 MiB (38.1 MiB/s) with 1 file(s) remaining
Completed 77.8 MiB/283.6 MiB (38.1 MiB/s) with 1 file(s) remaining
Completed 78.0 MiB/283.6 MiB (38.1 MiB/s) with 1 file(s) remaining
Completed 78.2 MiB/283.6 MiB (38.1 MiB/s) with 1 file(s) remaining
Completed 78.5 MiB/283.6 MiB (37.7 MiB/s) with 1 file(s) remaining
Completed 78.8 MiB/283.6 MiB (37.7 MiB/s) with 1 file(s) remaining
Completed 79.0 MiB/283.6 MiB (37.8 MiB/s) with 1 file(s) remaining
Completed 79.2 MiB/283.6 MiB (37.9 MiB/s) with 1 file(s) remaining
Completed 79.5 MiB/283.6 MiB (37.8 MiB/s) with 1 file(s) remaining
Completed 79.8 MiB/283.6 MiB (37.6 MiB/s) with 1 file(s) remaining
Completed 80.0 MiB/283.6 MiB (37.5 MiB/s) with 1 file(s) remaining
Completed 80.2 MiB/283.6 MiB (37.6 MiB/s) with 1 file(s) remaining
Completed 80.5 MiB/283.6 MiB (37.5 MiB/s) with 1 file(s) remaining
Completed 80.8 MiB/283.6 MiB (37.5 MiB/s) with 1 file(s) remaining
Completed 81.0 MiB/283.6 MiB (37.6 MiB/s) with 1 file(s) remaining
Completed 81.2 MiB/283.6 MiB (37.7 MiB/s) with 1 file(s) remaining
Completed 81.5 MiB/283.6 MiB (37.4 MiB/s) with 1 file(s) remaining
Completed 81.8 MiB/283.6 MiB (37.5 MiB/s) with 1 file(s) remaining
Completed 82.0 MiB/283.6 MiB (37.3 MiB/s) with 1 file(s) remaining
Completed 82.2 MiB/283.6 MiB (37.4 MiB/s) with 1 file(s) remaining
Completed 82.5 MiB/283.6 MiB (37.4 MiB/s) with 1 file(s) remaining
Completed 82.8 MiB/283.6 MiB (37.5 MiB/s) with 1 file(s) remaining
Completed 83.0 MiB/283.6 MiB (37.0 MiB/s) with 1 file(s) remaining
Completed 83.2 MiB/283.6 MiB (37.1 MiB/s) with 1 file(s) remaining
Completed 83.5 MiB/283.6 MiB (36.9 MiB/s) with 1 file(s) remaining
Completed 83.8 MiB/283.6 MiB (36.6 MiB/s) with 1 file(s) remaining
Completed 84.0 MiB/283.6 MiB (36.7 MiB/s) with 1 file(s) remaining
Completed 84.2 MiB/283.6 MiB (36.5 MiB/s) with 1 file(s) remaining
Completed 84.5 MiB/283.6 MiB (36.4 MiB/s) with 1 file(s) remaining
Completed 84.8 MiB/283.6 MiB (36.4 MiB/s) with 1 file(s) remaining
Completed 85.0 MiB/283.6 MiB (36.4 MiB/s) with 1 file(s) remaining
Completed 85.2 MiB/283.6 MiB (36.5 MiB/s) with 1 file(s) remaining
Completed 85.5 MiB/283.6 MiB (36.4 MiB/s) with 1 file(s) remaining
Completed 85.8 MiB/283.6 MiB (36.3 MiB/s) with 1 file(s) remaining
Completed 86.0 MiB/283.6 MiB (36.4 MiB/s) with 1 file(s) remaining
Completed 86.2 MiB/283.6 MiB (36.5 MiB/s) with 1 file(s) remaining
Completed 86.5 MiB/283.6 MiB (36.4 MiB/s) with 1 file(s) remaining
Completed 86.8 MiB/283.6 MiB (36.4 MiB/s) with 1 file(s) remaining
Completed 87.0 MiB/283.6 MiB (36.2 MiB/s) with 1 file(s) remaining
Completed 87.2 MiB/283.6 MiB (36.3 MiB/s) with 1 file(s) remaining
Completed 87.5 MiB/283.6 MiB (35.9 MiB/s) with 1 file(s) remaining
Completed 87.8 MiB/283.6 MiB (36.0 MiB/s) with 1 file(s) remaining
Completed 88.0 MiB/283.6 MiB (36.1 MiB/s) with 1 file(s) remaining
Completed 88.2 MiB/283.6 MiB (36.0 MiB/s) with 1 file(s) remaining
Completed 88.5 MiB/283.6 MiB (36.0 MiB/s) with 1 file(s) remaining
Completed 88.8 MiB/283.6 MiB (36.0 MiB/s) with 1 file(s) remaining
Completed 89.0 MiB/283.6 MiB (36.1 MiB/s) with 1 file(s) remaining
Completed 89.2 MiB/283.6 MiB (36.1 MiB/s) with 1 file(s) remaining
Completed 89.5 MiB/283.6 MiB (36.2 MiB/s) with 1 file(s) remaining
Completed 89.8 MiB/283.6 MiB (35.9 MiB/s) with 1 file(s) remaining
Completed 90.0 MiB/283.6 MiB (35.9 MiB/s) with 1 file(s) remaining
Completed 90.2 MiB/283.6 MiB (35.8 MiB/s) with 1 file(s) remaining
Completed 90.5 MiB/283.6 MiB (35.8 MiB/s) with 1 file(s) remaining
Completed 90.8 MiB/283.6 MiB (35.8 MiB/s) with 1 file(s) remaining
Completed 91.0 MiB/283.6 MiB (35.8 MiB/s) with 1 file(s) remaining
Completed 91.2 MiB/283.6 MiB (35.8 MiB/s) with 1 file(s) remaining
Completed 91.5 MiB/283.6 MiB (35.8 MiB/s) with 1 file(s) remaining
Completed 91.8 MiB/283.6 MiB (35.8 MiB/s) with 1 file(s) remaining
Completed 92.0 MiB/283.6 MiB (35.9 MiB/s) with 1 file(s) remaining
Completed 92.2 MiB/283.6 MiB (36.0 MiB/s) with 1 file(s) remaining
Completed 92.5 MiB/283.6 MiB (35.9 MiB/s) with 1 file(s) remaining
Completed 92.8 MiB/283.6 MiB (35.9 MiB/s) with 1 file(s) remaining
Completed 93.0 MiB/283.6 MiB (35.8 MiB/s) with 1 file(s) remaining
Completed 93.2 MiB/283.6 MiB (35.8 MiB/s) with 1 file(s) remaining
Completed 93.5 MiB/283.6 MiB (35.5 MiB/s) with 1 file(s) remaining
Completed 93.8 MiB/283.6 MiB (35.6 MiB/s) with 1 file(s) remaining
Completed 94.0 MiB/283.6 MiB (35.7 MiB/s) with 1 file(s) remaining
Completed 94.2 MiB/283.6 MiB (35.8 MiB/s) with 1 file(s) remaining
Completed 94.5 MiB/283.6 MiB (35.7 MiB/s) with 1 file(s) remaining
Completed 94.8 MiB/283.6 MiB (35.6 MiB/s) with 1 file(s) remaining
Completed 95.0 MiB/283.6 MiB (35.7 MiB/s) with 1 file(s) remaining
Completed 95.2 MiB/283.6 MiB (35.4 MiB/s) with 1 file(s) remaining
Completed 95.5 MiB/283.6 MiB (35.5 MiB/s) with 1 file(s) remaining
Completed 95.8 MiB/283.6 MiB (35.6 MiB/s) with 1 file(s) remaining
Completed 96.0 MiB/283.6 MiB (35.5 MiB/s) with 1 file(s) remaining
Completed 96.2 MiB/283.6 MiB (35.6 MiB/s) with 1 file(s) remaining
Completed 96.5 MiB/283.6 MiB (35.7 MiB/s) with 1 file(s) remaining
Completed 96.8 MiB/283.6 MiB (35.6 MiB/s) with 1 file(s) remaining
Completed 97.0 MiB/283.6 MiB (35.6 MiB/s) with 1 file(s) remaining
Completed 97.2 MiB/283.6 MiB (35.3 MiB/s) with 1 file(s) remaining
Completed 97.5 MiB/283.6 MiB (35.3 MiB/s) with 1 file(s) remaining
Completed 97.8 MiB/283.6 MiB (35.4 MiB/s) with 1 file(s) remaining
Completed 98.0 MiB/283.6 MiB (35.5 MiB/s) with 1 file(s) remaining
Completed 98.2 MiB/283.6 MiB (35.3 MiB/s) with 1 file(s) remaining
Completed 98.5 MiB/283.6 MiB (35.3 MiB/s) with 1 file(s) remaining
Completed 98.8 MiB/283.6 MiB (35.3 MiB/s) with 1 file(s) remaining
Completed 99.0 MiB/283.6 MiB (35.3 MiB/s) with 1 file(s) remaining
Completed 99.2 MiB/283.6 MiB (35.3 MiB/s) with 1 file(s) remaining
Completed 99.5 MiB/283.6 MiB (35.4 MiB/s) with 1 file(s) remaining
Completed 99.8 MiB/283.6 MiB (35.4 MiB/s) with 1 file(s) remaining
Completed 100.0 MiB/283.6 MiB (35.1 MiB/s) with 1 file(s) remaining
Completed 100.2 MiB/283.6 MiB (35.1 MiB/s) with 1 file(s) remaining
Completed 100.5 MiB/283.6 MiB (35.2 MiB/s) with 1 file(s) remaining
Completed 100.8 MiB/283.6 MiB (35.3 MiB/s) with 1 file(s) remaining
Completed 101.0 MiB/283.6 MiB (35.3 MiB/s) with 1 file(s) remaining
Completed 101.2 MiB/283.6 MiB (35.4 MiB/s) with 1 file(s) remaining
Completed 101.5 MiB/283.6 MiB (35.4 MiB/s) with 1 file(s) remaining
Completed 101.8 MiB/283.6 MiB (35.3 MiB/s) with 1 file(s) remaining
Completed 102.0 MiB/283.6 MiB (35.3 MiB/s) with 1 file(s) remaining
Completed 102.2 MiB/283.6 MiB (35.3 MiB/s) with 1 file(s) remaining
Completed 102.5 MiB/283.6 MiB (35.3 MiB/s) with 1 file(s) remaining
Completed 102.8 MiB/283.6 MiB (35.1 MiB/s) with 1 file(s) remaining
Completed 103.0 MiB/283.6 MiB (35.2 MiB/s) with 1 file(s) remaining
Completed 103.2 MiB/283.6 MiB (35.2 MiB/s) with 1 file(s) remaining
Completed 103.5 MiB/283.6 MiB (35.3 MiB/s) with 1 file(s) remaining
Completed 103.8 MiB/283.6 MiB (35.3 MiB/s) with 1 file(s) remaining
Completed 104.0 MiB/283.6 MiB (35.3 MiB/s) with 1 file(s) remaining
Completed 104.2 MiB/283.6 MiB (35.2 MiB/s) with 1 file(s) remaining
Completed 104.5 MiB/283.6 MiB (35.3 MiB/s) with 1 file(s) remaining
Completed 104.8 MiB/283.6 MiB (35.2 MiB/s) with 1 file(s) remaining
Completed 105.0 MiB/283.6 MiB (35.2 MiB/s) with 1 file(s) remaining
Completed 105.2 MiB/283.6 MiB (35.1 MiB/s) with 1 file(s) remaining
Completed 105.5 MiB/283.6 MiB (35.2 MiB/s) with 1 file(s) remaining
Completed 105.8 MiB/283.6 MiB (35.1 MiB/s) with 1 file(s) remaining
Completed 106.0 MiB/283.6 MiB (35.2 MiB/s) with 1 file(s) remaining
Completed 106.2 MiB/283.6 MiB (35.2 MiB/s) with 1 file(s) remaining
Completed 106.5 MiB/283.6 MiB (35.1 MiB/s) with 1 file(s) remaining
Completed 106.8 MiB/283.6 MiB (35.2 MiB/s) with 1 file(s) remaining
Completed 107.0 MiB/283.6 MiB (35.2 MiB/s) with 1 file(s) remaining
Completed 107.2 MiB/283.6 MiB (35.2 MiB/s) with 1 file(s) remaining
Completed 107.5 MiB/283.6 MiB (35.1 MiB/s) with 1 file(s) remaining
Completed 107.8 MiB/283.6 MiB (35.1 MiB/s) with 1 file(s) remaining
Completed 108.0 MiB/283.6 MiB (35.1 MiB/s) with 1 file(s) remaining
Completed 108.2 MiB/283.6 MiB (35.2 MiB/s) with 1 file(s) remaining
Completed 108.5 MiB/283.6 MiB (35.2 MiB/s) with 1 file(s) remaining
Completed 108.8 MiB/283.6 MiB (35.2 MiB/s) with 1 file(s) remaining
Completed 109.0 MiB/283.6 MiB (35.2 MiB/s) with 1 file(s) remaining
Completed 109.2 MiB/283.6 MiB (35.2 MiB/s) with 1 file(s) remaining
Completed 109.5 MiB/283.6 MiB (35.3 MiB/s) with 1 file(s) remaining
Completed 109.8 MiB/283.6 MiB (35.3 MiB/s) with 1 file(s) remaining
Completed 110.0 MiB/283.6 MiB (35.4 MiB/s) with 1 file(s) remaining
Completed 110.2 MiB/283.6 MiB (35.4 MiB/s) with 1 file(s) remaining
Completed 110.5 MiB/283.6 MiB (35.3 MiB/s) with 1 file(s) remaining
Completed 110.8 MiB/283.6 MiB (35.2 MiB/s) with 1 file(s) remaining
Completed 111.0 MiB/283.6 MiB (35.3 MiB/s) with 1 file(s) remaining
Completed 111.2 MiB/283.6 MiB (35.3 MiB/s) with 1 file(s) remaining
Completed 111.5 MiB/283.6 MiB (35.4 MiB/s) with 1 file(s) remaining
Completed 111.8 MiB/283.6 MiB (35.4 MiB/s) with 1 file(s) remaining
Completed 112.0 MiB/283.6 MiB (35.3 MiB/s) with 1 file(s) remaining
Completed 112.2 MiB/283.6 MiB (35.2 MiB/s) with 1 file(s) remaining
Completed 112.5 MiB/283.6 MiB (35.1 MiB/s) with 1 file(s) remaining
Completed 112.8 MiB/283.6 MiB (35.2 MiB/s) with 1 file(s) remaining
Completed 113.0 MiB/283.6 MiB (35.3 MiB/s) with 1 file(s) remaining
Completed 113.2 MiB/283.6 MiB (35.4 MiB/s) with 1 file(s) remaining
Completed 113.5 MiB/283.6 MiB (35.4 MiB/s) with 1 file(s) remaining
Completed 113.8 MiB/283.6 MiB (35.4 MiB/s) with 1 file(s) remaining
Completed 114.0 MiB/283.6 MiB (35.4 MiB/s) with 1 file(s) remaining
Completed 114.2 MiB/283.6 MiB (35.1 MiB/s) with 1 file(s) remaining
Completed 114.5 MiB/283.6 MiB (35.1 MiB/s) with 1 file(s) remaining
Completed 114.8 MiB/283.6 MiB (35.2 MiB/s) with 1 file(s) remaining
Completed 115.0 MiB/283.6 MiB (35.1 MiB/s) with 1 file(s) remaining
Completed 115.2 MiB/283.6 MiB (35.1 MiB/s) with 1 file(s) remaining
Completed 115.5 MiB/283.6 MiB (35.1 MiB/s) with 1 file(s) remaining
Completed 115.8 MiB/283.6 MiB (35.2 MiB/s) with 1 file(s) remaining
Completed 116.0 MiB/283.6 MiB (35.1 MiB/s) with 1 file(s) remaining
Completed 116.2 MiB/283.6 MiB (35.2 MiB/s) with 1 file(s) remaining
Completed 116.5 MiB/283.6 MiB (35.2 MiB/s) with 1 file(s) remaining
Completed 116.8 MiB/283.6 MiB (35.0 MiB/s) with 1 file(s) remaining
Completed 117.0 MiB/283.6 MiB (34.9 MiB/s) with 1 file(s) remaining
Completed 117.2 MiB/283.6 MiB (34.9 MiB/s) with 1 file(s) remaining
Completed 117.5 MiB/283.6 MiB (34.9 MiB/s) with 1 file(s) remaining
Completed 117.8 MiB/283.6 MiB (35.0 MiB/s) with 1 file(s) remaining
Completed 118.0 MiB/283.6 MiB (34.9 MiB/s) with 1 file(s) remaining
Completed 118.2 MiB/283.6 MiB (34.9 MiB/s) with 1 file(s) remaining
Completed 118.5 MiB/283.6 MiB (34.6 MiB/s) with 1 file(s) remaining
Completed 118.8 MiB/283.6 MiB (34.7 MiB/s) with 1 file(s) remaining
Completed 119.0 MiB/283.6 MiB (34.7 MiB/s) with 1 file(s) remaining
Completed 119.2 MiB/283.6 MiB (34.5 MiB/s) with 1 file(s) remaining
Completed 119.5 MiB/283.6 MiB (34.5 MiB/s) with 1 file(s) remaining
Completed 119.8 MiB/283.6 MiB (34.5 MiB/s) with 1 file(s) remaining
Completed 120.0 MiB/283.6 MiB (34.6 MiB/s) with 1 file(s) remaining
Completed 120.2 MiB/283.6 MiB (34.5 MiB/s) with 1 file(s) remaining
Completed 120.5 MiB/283.6 MiB (34.5 MiB/s) with 1 file(s) remaining
Completed 120.8 MiB/283.6 MiB (34.5 MiB/s) with 1 file(s) remaining
Completed 121.0 MiB/283.6 MiB (34.5 MiB/s) with 1 file(s) remaining
Completed 121.2 MiB/283.6 MiB (34.6 MiB/s) with 1 file(s) remaining
Completed 121.5 MiB/283.6 MiB (34.6 MiB/s) with 1 file(s) remaining
Completed 121.8 MiB/283.6 MiB (34.6 MiB/s) with 1 file(s) remaining
Completed 122.0 MiB/283.6 MiB (34.7 MiB/s) with 1 file(s) remaining
Completed 122.2 MiB/283.6 MiB (34.6 MiB/s) with 1 file(s) remaining
Completed 122.5 MiB/283.6 MiB (34.4 MiB/s) with 1 file(s) remaining
Completed 122.8 MiB/283.6 MiB (34.4 MiB/s) with 1 file(s) remaining
Completed 123.0 MiB/283.6 MiB (34.4 MiB/s) with 1 file(s) remaining
Completed 123.2 MiB/283.6 MiB (34.4 MiB/s) with 1 file(s) remaining
Completed 123.5 MiB/283.6 MiB (34.4 MiB/s) with 1 file(s) remaining
Completed 123.8 MiB/283.6 MiB (34.4 MiB/s) with 1 file(s) remaining
Completed 124.0 MiB/283.6 MiB (34.4 MiB/s) with 1 file(s) remaining
Completed 124.2 MiB/283.6 MiB (34.4 MiB/s) with 1 file(s) remaining
Completed 124.5 MiB/283.6 MiB (34.4 MiB/s) with 1 file(s) remaining
Completed 124.8 MiB/283.6 MiB (34.5 MiB/s) with 1 file(s) remaining
Completed 125.0 MiB/283.6 MiB (34.5 MiB/s) with 1 file(s) remaining
Completed 125.2 MiB/283.6 MiB (34.5 MiB/s) with 1 file(s) remaining
Completed 125.5 MiB/283.6 MiB (34.5 MiB/s) with 1 file(s) remaining
Completed 125.8 MiB/283.6 MiB (34.5 MiB/s) with 1 file(s) remaining
Completed 126.0 MiB/283.6 MiB (34.5 MiB/s) with 1 file(s) remaining
Completed 126.2 MiB/283.6 MiB (34.3 MiB/s) with 1 file(s) remaining
Completed 126.5 MiB/283.6 MiB (34.3 MiB/s) with 1 file(s) remaining
Completed 126.8 MiB/283.6 MiB (34.3 MiB/s) with 1 file(s) remaining
Completed 127.0 MiB/283.6 MiB (34.2 MiB/s) with 1 file(s) remaining
Completed 127.2 MiB/283.6 MiB (34.3 MiB/s) with 1 file(s) remaining
Completed 127.5 MiB/283.6 MiB (34.4 MiB/s) with 1 file(s) remaining
Completed 127.8 MiB/283.6 MiB (34.4 MiB/s) with 1 file(s) remaining
Completed 128.0 MiB/283.6 MiB (34.3 MiB/s) with 1 file(s) remaining
Completed 128.2 MiB/283.6 MiB (34.3 MiB/s) with 1 file(s) remaining
Completed 128.5 MiB/283.6 MiB (34.3 MiB/s) with 1 file(s) remaining
Completed 128.8 MiB/283.6 MiB (34.4 MiB/s) with 1 file(s) remaining
Completed 129.0 MiB/283.6 MiB (34.3 MiB/s) with 1 file(s) remaining
Completed 129.2 MiB/283.6 MiB (34.3 MiB/s) with 1 file(s) remaining
Completed 129.5 MiB/283.6 MiB (34.4 MiB/s) with 1 file(s) remaining
Completed 129.8 MiB/283.6 MiB (34.4 MiB/s) with 1 file(s) remaining
Completed 130.0 MiB/283.6 MiB (34.4 MiB/s) with 1 file(s) remaining
Completed 130.2 MiB/283.6 MiB (34.4 MiB/s) with 1 file(s) remaining
Completed 130.5 MiB/283.6 MiB (34.4 MiB/s) with 1 file(s) remaining
Completed 130.8 MiB/283.6 MiB (34.3 MiB/s) with 1 file(s) remaining
Completed 131.0 MiB/283.6 MiB (34.3 MiB/s) with 1 file(s) remaining
Completed 131.2 MiB/283.6 MiB (34.3 MiB/s) with 1 file(s) remaining
Completed 131.5 MiB/283.6 MiB (34.3 MiB/s) with 1 file(s) remaining
Completed 131.8 MiB/283.6 MiB (34.3 MiB/s) with 1 file(s) remaining
Completed 132.0 MiB/283.6 MiB (34.3 MiB/s) with 1 file(s) remaining
Completed 132.2 MiB/283.6 MiB (34.4 MiB/s) with 1 file(s) remaining
Completed 132.5 MiB/283.6 MiB (34.4 MiB/s) with 1 file(s) remaining
Completed 132.8 MiB/283.6 MiB (34.5 MiB/s) with 1 file(s) remaining
Completed 133.0 MiB/283.6 MiB (34.4 MiB/s) with 1 file(s) remaining
Completed 133.2 MiB/283.6 MiB (34.5 MiB/s) with 1 file(s) remaining
Completed 133.5 MiB/283.6 MiB (34.5 MiB/s) with 1 file(s) remaining
Completed 133.8 MiB/283.6 MiB (34.4 MiB/s) with 1 file(s) remaining
Completed 134.0 MiB/283.6 MiB (34.5 MiB/s) with 1 file(s) remaining
Completed 134.2 MiB/283.6 MiB (34.5 MiB/s) with 1 file(s) remaining
Completed 134.5 MiB/283.6 MiB (34.5 MiB/s) with 1 file(s) remaining
Completed 134.8 MiB/283.6 MiB (34.5 MiB/s) with 1 file(s) remaining
Completed 135.0 MiB/283.6 MiB (34.5 MiB/s) with 1 file(s) remaining
Completed 135.2 MiB/283.6 MiB (34.6 MiB/s) with 1 file(s) remaining
Completed 135.5 MiB/283.6 MiB (34.6 MiB/s) with 1 file(s) remaining
Completed 135.8 MiB/283.6 MiB (34.6 MiB/s) with 1 file(s) remaining
Completed 136.0 MiB/283.6 MiB (34.6 MiB/s) with 1 file(s) remaining
Completed 136.2 MiB/283.6 MiB (34.7 MiB/s) with 1 file(s) remaining
Completed 136.5 MiB/283.6 MiB (34.7 MiB/s) with 1 file(s) remaining
Completed 136.8 MiB/283.6 MiB (34.7 MiB/s) with 1 file(s) remaining
Completed 137.0 MiB/283.6 MiB (34.7 MiB/s) with 1 file(s) remaining
Completed 137.2 MiB/283.6 MiB (34.6 MiB/s) with 1 file(s) remaining
Completed 137.5 MiB/283.6 MiB (34.6 MiB/s) with 1 file(s) remaining
Completed 137.8 MiB/283.6 MiB (34.7 MiB/s) with 1 file(s) remaining
Completed 138.0 MiB/283.6 MiB (34.7 MiB/s) with 1 file(s) remaining
Completed 138.2 MiB/283.6 MiB (34.6 MiB/s) with 1 file(s) remaining
Completed 138.5 MiB/283.6 MiB (34.6 MiB/s) with 1 file(s) remaining
Completed 138.8 MiB/283.6 MiB (34.6 MiB/s) with 1 file(s) remaining
Completed 139.0 MiB/283.6 MiB (34.6 MiB/s) with 1 file(s) remaining
Completed 139.2 MiB/283.6 MiB (34.7 MiB/s) with 1 file(s) remaining
Completed 139.5 MiB/283.6 MiB (34.7 MiB/s) with 1 file(s) remaining
Completed 139.8 MiB/283.6 MiB (34.8 MiB/s) with 1 file(s) remaining
Completed 140.0 MiB/283.6 MiB (34.8 MiB/s) with 1 file(s) remaining
Completed 140.2 MiB/283.6 MiB (34.9 MiB/s) with 1 file(s) remaining
Completed 140.5 MiB/283.6 MiB (34.9 MiB/s) with 1 file(s) remaining
Completed 140.8 MiB/283.6 MiB (34.8 MiB/s) with 1 file(s) remaining
Completed 141.0 MiB/283.6 MiB (34.8 MiB/s) with 1 file(s) remaining
Completed 141.2 MiB/283.6 MiB (34.9 MiB/s) with 1 file(s) remaining
Completed 141.5 MiB/283.6 MiB (34.9 MiB/s) with 1 file(s) remaining
Completed 141.8 MiB/283.6 MiB (34.8 MiB/s) with 1 file(s) remaining
Completed 142.0 MiB/283.6 MiB (34.9 MiB/s) with 1 file(s) remaining
Completed 142.2 MiB/283.6 MiB (34.9 MiB/s) with 1 file(s) remaining
Completed 142.5 MiB/283.6 MiB (34.9 MiB/s) with 1 file(s) remaining
Completed 142.8 MiB/283.6 MiB (35.0 MiB/s) with 1 file(s) remaining
Completed 143.0 MiB/283.6 MiB (35.0 MiB/s) with 1 file(s) remaining
Completed 143.2 MiB/283.6 MiB (34.9 MiB/s) with 1 file(s) remaining
Completed 143.5 MiB/283.6 MiB (34.8 MiB/s) with 1 file(s) remaining
Completed 143.8 MiB/283.6 MiB (34.8 MiB/s) with 1 file(s) remaining
Completed 144.0 MiB/283.6 MiB (34.8 MiB/s) with 1 file(s) remaining
Completed 144.2 MiB/283.6 MiB (34.9 MiB/s) with 1 file(s) remaining
Completed 144.5 MiB/283.6 MiB (34.9 MiB/s) with 1 file(s) remaining
Completed 144.8 MiB/283.6 MiB (34.9 MiB/s) with 1 file(s) remaining
Completed 145.0 MiB/283.6 MiB (34.9 MiB/s) with 1 file(s) remaining
Completed 145.2 MiB/283.6 MiB (34.8 MiB/s) with 1 file(s) remaining
Completed 145.5 MiB/283.6 MiB (34.9 MiB/s) with 1 file(s) remaining
Completed 145.8 MiB/283.6 MiB (34.9 MiB/s) with 1 file(s) remaining
Completed 146.0 MiB/283.6 MiB (34.8 MiB/s) with 1 file(s) remaining
Completed 146.2 MiB/283.6 MiB (34.9 MiB/s) with 1 file(s) remaining
Completed 146.5 MiB/283.6 MiB (35.0 MiB/s) with 1 file(s) remaining
Completed 146.8 MiB/283.6 MiB (34.8 MiB/s) with 1 file(s) remaining
Completed 147.0 MiB/283.6 MiB (34.8 MiB/s) with 1 file(s) remaining
Completed 147.2 MiB/283.6 MiB (34.9 MiB/s) with 1 file(s) remaining
Completed 147.5 MiB/283.6 MiB (34.8 MiB/s) with 1 file(s) remaining
Completed 147.8 MiB/283.6 MiB (34.7 MiB/s) with 1 file(s) remaining
Completed 148.0 MiB/283.6 MiB (34.7 MiB/s) with 1 file(s) remaining
Completed 148.2 MiB/283.6 MiB (34.7 MiB/s) with 1 file(s) remaining
Completed 148.5 MiB/283.6 MiB (34.8 MiB/s) with 1 file(s) remaining
Completed 148.8 MiB/283.6 MiB (34.8 MiB/s) with 1 file(s) remaining
Completed 149.0 MiB/283.6 MiB (34.8 MiB/s) with 1 file(s) remaining
Completed 149.2 MiB/283.6 MiB (34.8 MiB/s) with 1 file(s) remaining
Completed 149.5 MiB/283.6 MiB (34.8 MiB/s) with 1 file(s) remaining
Completed 149.8 MiB/283.6 MiB (34.5 MiB/s) with 1 file(s) remaining
Completed 150.0 MiB/283.6 MiB (34.5 MiB/s) with 1 file(s) remaining
Completed 150.2 MiB/283.6 MiB (34.6 MiB/s) with 1 file(s) remaining
Completed 150.5 MiB/283.6 MiB (34.6 MiB/s) with 1 file(s) remaining
Completed 150.8 MiB/283.6 MiB (34.5 MiB/s) with 1 file(s) remaining
Completed 151.0 MiB/283.6 MiB (34.5 MiB/s) with 1 file(s) remaining
Completed 151.2 MiB/283.6 MiB (34.5 MiB/s) with 1 file(s) remaining
Completed 151.5 MiB/283.6 MiB (34.4 MiB/s) with 1 file(s) remaining
Completed 151.8 MiB/283.6 MiB (34.4 MiB/s) with 1 file(s) remaining
Completed 152.0 MiB/283.6 MiB (34.4 MiB/s) with 1 file(s) remaining
Completed 152.2 MiB/283.6 MiB (34.4 MiB/s) with 1 file(s) remaining
Completed 152.5 MiB/283.6 MiB (34.4 MiB/s) with 1 file(s) remaining
Completed 152.8 MiB/283.6 MiB (34.4 MiB/s) with 1 file(s) remaining
Completed 153.0 MiB/283.6 MiB (34.2 MiB/s) with 1 file(s) remaining
Completed 153.2 MiB/283.6 MiB (34.1 MiB/s) with 1 file(s) remaining
Completed 153.5 MiB/283.6 MiB (34.2 MiB/s) with 1 file(s) remaining
Completed 153.8 MiB/283.6 MiB (34.1 MiB/s) with 1 file(s) remaining
Completed 154.0 MiB/283.6 MiB (34.1 MiB/s) with 1 file(s) remaining
Completed 154.2 MiB/283.6 MiB (34.1 MiB/s) with 1 file(s) remaining
Completed 154.5 MiB/283.6 MiB (34.1 MiB/s) with 1 file(s) remaining
Completed 154.8 MiB/283.6 MiB (34.1 MiB/s) with 1 file(s) remaining
Completed 155.0 MiB/283.6 MiB (34.1 MiB/s) with 1 file(s) remaining
Completed 155.2 MiB/283.6 MiB (34.0 MiB/s) with 1 file(s) remaining
Completed 155.5 MiB/283.6 MiB (34.0 MiB/s) with 1 file(s) remaining
Completed 155.8 MiB/283.6 MiB (33.8 MiB/s) with 1 file(s) remaining
Completed 156.0 MiB/283.6 MiB (33.9 MiB/s) with 1 file(s) remaining
Completed 156.2 MiB/283.6 MiB (33.9 MiB/s) with 1 file(s) remaining
Completed 156.5 MiB/283.6 MiB (33.9 MiB/s) with 1 file(s) remaining
Completed 156.8 MiB/283.6 MiB (33.8 MiB/s) with 1 file(s) remaining
Completed 157.0 MiB/283.6 MiB (33.8 MiB/s) with 1 file(s) remaining
Completed 157.2 MiB/283.6 MiB (33.8 MiB/s) with 1 file(s) remaining
Completed 157.5 MiB/283.6 MiB (33.7 MiB/s) with 1 file(s) remaining
Completed 157.8 MiB/283.6 MiB (33.8 MiB/s) with 1 file(s) remaining
Completed 158.0 MiB/283.6 MiB (33.7 MiB/s) with 1 file(s) remaining
Completed 158.2 MiB/283.6 MiB (33.7 MiB/s) with 1 file(s) remaining
Completed 158.5 MiB/283.6 MiB (33.7 MiB/s) with 1 file(s) remaining
Completed 158.8 MiB/283.6 MiB (33.7 MiB/s) with 1 file(s) remaining
Completed 159.0 MiB/283.6 MiB (33.7 MiB/s) with 1 file(s) remaining
Completed 159.2 MiB/283.6 MiB (33.7 MiB/s) with 1 file(s) remaining
Completed 159.5 MiB/283.6 MiB (33.7 MiB/s) with 1 file(s) remaining
Completed 159.8 MiB/283.6 MiB (33.7 MiB/s) with 1 file(s) remaining
Completed 160.0 MiB/283.6 MiB (33.7 MiB/s) with 1 file(s) remaining
Completed 160.2 MiB/283.6 MiB (33.7 MiB/s) with 1 file(s) remaining
Completed 160.5 MiB/283.6 MiB (33.7 MiB/s) with 1 file(s) remaining
Completed 160.8 MiB/283.6 MiB (33.6 MiB/s) with 1 file(s) remaining
Completed 161.0 MiB/283.6 MiB (33.5 MiB/s) with 1 file(s) remaining
Completed 161.2 MiB/283.6 MiB (33.6 MiB/s) with 1 file(s) remaining
Completed 161.5 MiB/283.6 MiB (33.6 MiB/s) with 1 file(s) remaining
Completed 161.8 MiB/283.6 MiB (33.5 MiB/s) with 1 file(s) remaining
Completed 162.0 MiB/283.6 MiB (33.6 MiB/s) with 1 file(s) remaining
Completed 162.2 MiB/283.6 MiB (33.6 MiB/s) with 1 file(s) remaining
Completed 162.5 MiB/283.6 MiB (33.6 MiB/s) with 1 file(s) remaining
Completed 162.8 MiB/283.6 MiB (33.6 MiB/s) with 1 file(s) remaining
Completed 163.0 MiB/283.6 MiB (33.6 MiB/s) with 1 file(s) remaining
Completed 163.2 MiB/283.6 MiB (33.6 MiB/s) with 1 file(s) remaining
Completed 163.5 MiB/283.6 MiB (33.5 MiB/s) with 1 file(s) remaining
Completed 163.8 MiB/283.6 MiB (33.5 MiB/s) with 1 file(s) remaining
Completed 164.0 MiB/283.6 MiB (33.5 MiB/s) with 1 file(s) remaining
Completed 164.2 MiB/283.6 MiB (33.5 MiB/s) with 1 file(s) remaining
Completed 164.5 MiB/283.6 MiB (33.6 MiB/s) with 1 file(s) remaining
Completed 164.8 MiB/283.6 MiB (33.6 MiB/s) with 1 file(s) remaining
Completed 165.0 MiB/283.6 MiB (33.4 MiB/s) with 1 file(s) remaining
Completed 165.2 MiB/283.6 MiB (33.4 MiB/s) with 1 file(s) remaining
Completed 165.5 MiB/283.6 MiB (33.4 MiB/s) with 1 file(s) remaining
Completed 165.8 MiB/283.6 MiB (33.5 MiB/s) with 1 file(s) remaining
Completed 166.0 MiB/283.6 MiB (33.5 MiB/s) with 1 file(s) remaining
Completed 166.2 MiB/283.6 MiB (33.5 MiB/s) with 1 file(s) remaining
Completed 166.5 MiB/283.6 MiB (33.3 MiB/s) with 1 file(s) remaining
Completed 166.8 MiB/283.6 MiB (33.3 MiB/s) with 1 file(s) remaining
Completed 167.0 MiB/283.6 MiB (33.3 MiB/s) with 1 file(s) remaining
Completed 167.2 MiB/283.6 MiB (33.4 MiB/s) with 1 file(s) remaining
Completed 167.5 MiB/283.6 MiB (33.3 MiB/s) with 1 file(s) remaining
Completed 167.8 MiB/283.6 MiB (33.4 MiB/s) with 1 file(s) remaining
Completed 168.0 MiB/283.6 MiB (33.4 MiB/s) with 1 file(s) remaining
Completed 168.2 MiB/283.6 MiB (33.3 MiB/s) with 1 file(s) remaining
Completed 168.5 MiB/283.6 MiB (33.3 MiB/s) with 1 file(s) remaining
Completed 168.8 MiB/283.6 MiB (33.2 MiB/s) with 1 file(s) remaining
Completed 169.0 MiB/283.6 MiB (33.1 MiB/s) with 1 file(s) remaining
Completed 169.2 MiB/283.6 MiB (33.2 MiB/s) with 1 file(s) remaining
Completed 169.5 MiB/283.6 MiB (33.1 MiB/s) with 1 file(s) remaining
Completed 169.8 MiB/283.6 MiB (33.1 MiB/s) with 1 file(s) remaining
Completed 170.0 MiB/283.6 MiB (33.1 MiB/s) with 1 file(s) remaining
Completed 170.2 MiB/283.6 MiB (33.1 MiB/s) with 1 file(s) remaining
Completed 170.5 MiB/283.6 MiB (33.1 MiB/s) with 1 file(s) remaining
Completed 170.8 MiB/283.6 MiB (33.1 MiB/s) with 1 file(s) remaining
Completed 171.0 MiB/283.6 MiB (33.0 MiB/s) with 1 file(s) remaining
Completed 171.2 MiB/283.6 MiB (33.0 MiB/s) with 1 file(s) remaining
Completed 171.5 MiB/283.6 MiB (33.0 MiB/s) with 1 file(s) remaining
Completed 171.8 MiB/283.6 MiB (33.0 MiB/s) with 1 file(s) remaining
Completed 172.0 MiB/283.6 MiB (33.0 MiB/s) with 1 file(s) remaining
Completed 172.2 MiB/283.6 MiB (33.1 MiB/s) with 1 file(s) remaining
Completed 172.5 MiB/283.6 MiB (33.1 MiB/s) with 1 file(s) remaining
Completed 172.8 MiB/283.6 MiB (32.8 MiB/s) with 1 file(s) remaining
Completed 173.0 MiB/283.6 MiB (32.9 MiB/s) with 1 file(s) remaining
Completed 173.2 MiB/283.6 MiB (32.9 MiB/s) with 1 file(s) remaining
Completed 173.5 MiB/283.6 MiB (32.9 MiB/s) with 1 file(s) remaining
Completed 173.8 MiB/283.6 MiB (32.9 MiB/s) with 1 file(s) remaining
Completed 174.0 MiB/283.6 MiB (32.9 MiB/s) with 1 file(s) remaining
Completed 174.2 MiB/283.6 MiB (32.9 MiB/s) with 1 file(s) remaining
Completed 174.5 MiB/283.6 MiB (32.9 MiB/s) with 1 file(s) remaining
Completed 174.8 MiB/283.6 MiB (32.9 MiB/s) with 1 file(s) remaining
Completed 175.0 MiB/283.6 MiB (32.8 MiB/s) with 1 file(s) remaining
Completed 175.2 MiB/283.6 MiB (32.8 MiB/s) with 1 file(s) remaining
Completed 175.5 MiB/283.6 MiB (32.7 MiB/s) with 1 file(s) remaining
Completed 175.8 MiB/283.6 MiB (32.8 MiB/s) with 1 file(s) remaining
Completed 176.0 MiB/283.6 MiB (32.8 MiB/s) with 1 file(s) remaining
Completed 176.2 MiB/283.6 MiB (32.9 MiB/s) with 1 file(s) remaining
Completed 176.5 MiB/283.6 MiB (32.8 MiB/s) with 1 file(s) remaining
Completed 176.8 MiB/283.6 MiB (32.7 MiB/s) with 1 file(s) remaining
Completed 177.0 MiB/283.6 MiB (32.7 MiB/s) with 1 file(s) remaining
Completed 177.2 MiB/283.6 MiB (32.7 MiB/s) with 1 file(s) remaining
Completed 177.5 MiB/283.6 MiB (32.7 MiB/s) with 1 file(s) remaining
Completed 177.8 MiB/283.6 MiB (32.7 MiB/s) with 1 file(s) remaining
Completed 178.0 MiB/283.6 MiB (32.7 MiB/s) with 1 file(s) remaining
Completed 178.2 MiB/283.6 MiB (32.7 MiB/s) with 1 file(s) remaining
Completed 178.5 MiB/283.6 MiB (32.7 MiB/s) with 1 file(s) remaining
Completed 178.8 MiB/283.6 MiB (32.7 MiB/s) with 1 file(s) remaining
Completed 179.0 MiB/283.6 MiB (32.7 MiB/s) with 1 file(s) remaining
Completed 179.2 MiB/283.6 MiB (32.7 MiB/s) with 1 file(s) remaining
Completed 179.5 MiB/283.6 MiB (32.7 MiB/s) with 1 file(s) remaining
Completed 179.8 MiB/283.6 MiB (32.6 MiB/s) with 1 file(s) remaining
Completed 180.0 MiB/283.6 MiB (32.6 MiB/s) with 1 file(s) remaining
Completed 180.2 MiB/283.6 MiB (32.6 MiB/s) with 1 file(s) remaining
Completed 180.5 MiB/283.6 MiB (32.6 MiB/s) with 1 file(s) remaining
Completed 180.8 MiB/283.6 MiB (32.7 MiB/s) with 1 file(s) remaining
Completed 181.0 MiB/283.6 MiB (32.5 MiB/s) with 1 file(s) remaining
Completed 181.2 MiB/283.6 MiB (32.5 MiB/s) with 1 file(s) remaining
Completed 181.5 MiB/283.6 MiB (32.4 MiB/s) with 1 file(s) remaining
Completed 181.8 MiB/283.6 MiB (32.3 MiB/s) with 1 file(s) remaining
Completed 182.0 MiB/283.6 MiB (32.3 MiB/s) with 1 file(s) remaining
Completed 182.2 MiB/283.6 MiB (32.4 MiB/s) with 1 file(s) remaining
Completed 182.5 MiB/283.6 MiB (32.3 MiB/s) with 1 file(s) remaining
Completed 182.8 MiB/283.6 MiB (32.4 MiB/s) with 1 file(s) remaining
Completed 183.0 MiB/283.6 MiB (32.2 MiB/s) with 1 file(s) remaining
Completed 183.2 MiB/283.6 MiB (32.2 MiB/s) with 1 file(s) remaining
Completed 183.5 MiB/283.6 MiB (32.2 MiB/s) with 1 file(s) remaining
Completed 183.8 MiB/283.6 MiB (32.1 MiB/s) with 1 file(s) remaining
Completed 184.0 MiB/283.6 MiB (32.1 MiB/s) with 1 file(s) remaining
Completed 184.2 MiB/283.6 MiB (32.2 MiB/s) with 1 file(s) remaining
Completed 184.5 MiB/283.6 MiB (32.2 MiB/s) with 1 file(s) remaining
Completed 184.8 MiB/283.6 MiB (32.2 MiB/s) with 1 file(s) remaining
Completed 185.0 MiB/283.6 MiB (32.2 MiB/s) with 1 file(s) remaining
Completed 185.2 MiB/283.6 MiB (32.1 MiB/s) with 1 file(s) remaining
Completed 185.5 MiB/283.6 MiB (32.1 MiB/s) with 1 file(s) remaining
Completed 185.8 MiB/283.6 MiB (32.1 MiB/s) with 1 file(s) remaining
Completed 186.0 MiB/283.6 MiB (32.1 MiB/s) with 1 file(s) remaining
Completed 186.2 MiB/283.6 MiB (32.1 MiB/s) with 1 file(s) remaining
Completed 186.5 MiB/283.6 MiB (32.1 MiB/s) with 1 file(s) remaining
Completed 186.8 MiB/283.6 MiB (32.1 MiB/s) with 1 file(s) remaining
Completed 187.0 MiB/283.6 MiB (32.1 MiB/s) with 1 file(s) remaining
Completed 187.2 MiB/283.6 MiB (32.2 MiB/s) with 1 file(s) remaining
Completed 187.5 MiB/283.6 MiB (32.2 MiB/s) with 1 file(s) remaining
Completed 187.8 MiB/283.6 MiB (32.2 MiB/s) with 1 file(s) remaining
Completed 188.0 MiB/283.6 MiB (32.2 MiB/s) with 1 file(s) remaining
Completed 188.2 MiB/283.6 MiB (32.1 MiB/s) with 1 file(s) remaining
Completed 188.5 MiB/283.6 MiB (32.1 MiB/s) with 1 file(s) remaining
Completed 188.8 MiB/283.6 MiB (32.1 MiB/s) with 1 file(s) remaining
Completed 189.0 MiB/283.6 MiB (32.1 MiB/s) with 1 file(s) remaining
Completed 189.2 MiB/283.6 MiB (32.1 MiB/s) with 1 file(s) remaining
Completed 189.5 MiB/283.6 MiB (32.1 MiB/s) with 1 file(s) remaining
Completed 189.8 MiB/283.6 MiB (32.2 MiB/s) with 1 file(s) remaining
Completed 190.0 MiB/283.6 MiB (32.1 MiB/s) with 1 file(s) remaining
Completed 190.2 MiB/283.6 MiB (32.1 MiB/s) with 1 file(s) remaining
Completed 190.5 MiB/283.6 MiB (32.2 MiB/s) with 1 file(s) remaining
Completed 190.8 MiB/283.6 MiB (32.2 MiB/s) with 1 file(s) remaining
Completed 191.0 MiB/283.6 MiB (32.2 MiB/s) with 1 file(s) remaining
Completed 191.2 MiB/283.6 MiB (32.2 MiB/s) with 1 file(s) remaining
Completed 191.5 MiB/283.6 MiB (32.1 MiB/s) with 1 file(s) remaining
Completed 191.8 MiB/283.6 MiB (32.2 MiB/s) with 1 file(s) remaining
Completed 192.0 MiB/283.6 MiB (32.2 MiB/s) with 1 file(s) remaining
Completed 192.2 MiB/283.6 MiB (32.2 MiB/s) with 1 file(s) remaining
Completed 192.5 MiB/283.6 MiB (32.3 MiB/s) with 1 file(s) remaining
Completed 192.8 MiB/283.6 MiB (32.3 MiB/s) with 1 file(s) remaining
Completed 193.0 MiB/283.6 MiB (32.3 MiB/s) with 1 file(s) remaining
Completed 193.2 MiB/283.6 MiB (32.3 MiB/s) with 1 file(s) remaining
Completed 193.5 MiB/283.6 MiB (32.3 MiB/s) with 1 file(s) remaining
Completed 193.8 MiB/283.6 MiB (32.3 MiB/s) with 1 file(s) remaining
Completed 194.0 MiB/283.6 MiB (32.2 MiB/s) with 1 file(s) remaining
Completed 194.2 MiB/283.6 MiB (32.3 MiB/s) with 1 file(s) remaining
Completed 194.5 MiB/283.6 MiB (32.3 MiB/s) with 1 file(s) remaining
Completed 194.8 MiB/283.6 MiB (32.3 MiB/s) with 1 file(s) remaining
Completed 195.0 MiB/283.6 MiB (32.2 MiB/s) with 1 file(s) remaining
Completed 195.2 MiB/283.6 MiB (32.2 MiB/s) with 1 file(s) remaining
Completed 195.5 MiB/283.6 MiB (32.2 MiB/s) with 1 file(s) remaining
Completed 195.8 MiB/283.6 MiB (32.2 MiB/s) with 1 file(s) remaining
Completed 196.0 MiB/283.6 MiB (32.2 MiB/s) with 1 file(s) remaining
Completed 196.2 MiB/283.6 MiB (32.2 MiB/s) with 1 file(s) remaining
Completed 196.5 MiB/283.6 MiB (32.3 MiB/s) with 1 file(s) remaining
Completed 196.8 MiB/283.6 MiB (32.3 MiB/s) with 1 file(s) remaining
Completed 197.0 MiB/283.6 MiB (32.3 MiB/s) with 1 file(s) remaining
Completed 197.2 MiB/283.6 MiB (32.3 MiB/s) with 1 file(s) remaining
Completed 197.5 MiB/283.6 MiB (32.3 MiB/s) with 1 file(s) remaining
Completed 197.8 MiB/283.6 MiB (32.3 MiB/s) with 1 file(s) remaining
Completed 198.0 MiB/283.6 MiB (32.3 MiB/s) with 1 file(s) remaining
Completed 198.2 MiB/283.6 MiB (32.3 MiB/s) with 1 file(s) remaining
Completed 198.5 MiB/283.6 MiB (32.3 MiB/s) with 1 file(s) remaining
Completed 198.8 MiB/283.6 MiB (32.2 MiB/s) with 1 file(s) remaining
Completed 199.0 MiB/283.6 MiB (32.3 MiB/s) with 1 file(s) remaining
Completed 199.2 MiB/283.6 MiB (32.3 MiB/s) with 1 file(s) remaining
Completed 199.5 MiB/283.6 MiB (32.3 MiB/s) with 1 file(s) remaining
Completed 199.8 MiB/283.6 MiB (32.2 MiB/s) with 1 file(s) remaining
Completed 200.0 MiB/283.6 MiB (32.2 MiB/s) with 1 file(s) remaining
Completed 200.2 MiB/283.6 MiB (32.2 MiB/s) with 1 file(s) remaining
Completed 200.5 MiB/283.6 MiB (32.2 MiB/s) with 1 file(s) remaining
Completed 200.8 MiB/283.6 MiB (32.2 MiB/s) with 1 file(s) remaining
Completed 201.0 MiB/283.6 MiB (32.2 MiB/s) with 1 file(s) remaining
Completed 201.2 MiB/283.6 MiB (32.3 MiB/s) with 1 file(s) remaining
Completed 201.5 MiB/283.6 MiB (32.3 MiB/s) with 1 file(s) remaining
Completed 201.8 MiB/283.6 MiB (32.2 MiB/s) with 1 file(s) remaining
Completed 202.0 MiB/283.6 MiB (32.2 MiB/s) with 1 file(s) remaining
Completed 202.2 MiB/283.6 MiB (32.2 MiB/s) with 1 file(s) remaining
Completed 202.5 MiB/283.6 MiB (32.2 MiB/s) with 1 file(s) remaining
Completed 202.8 MiB/283.6 MiB (32.2 MiB/s) with 1 file(s) remaining
Completed 203.0 MiB/283.6 MiB (32.3 MiB/s) with 1 file(s) remaining
Completed 203.2 MiB/283.6 MiB (32.2 MiB/s) with 1 file(s) remaining
Completed 203.5 MiB/283.6 MiB (32.3 MiB/s) with 1 file(s) remaining
Completed 203.8 MiB/283.6 MiB (32.2 MiB/s) with 1 file(s) remaining
Completed 204.0 MiB/283.6 MiB (32.1 MiB/s) with 1 file(s) remaining
Completed 204.2 MiB/283.6 MiB (32.1 MiB/s) with 1 file(s) remaining
Completed 204.5 MiB/283.6 MiB (32.1 MiB/s) with 1 file(s) remaining
Completed 204.8 MiB/283.6 MiB (32.1 MiB/s) with 1 file(s) remaining
Completed 205.0 MiB/283.6 MiB (32.2 MiB/s) with 1 file(s) remaining
Completed 205.2 MiB/283.6 MiB (32.2 MiB/s) with 1 file(s) remaining
Completed 205.5 MiB/283.6 MiB (32.2 MiB/s) with 1 file(s) remaining
Completed 205.8 MiB/283.6 MiB (32.2 MiB/s) with 1 file(s) remaining
Completed 206.0 MiB/283.6 MiB (32.3 MiB/s) with 1 file(s) remaining
Completed 206.2 MiB/283.6 MiB (32.1 MiB/s) with 1 file(s) remaining
Completed 206.5 MiB/283.6 MiB (32.1 MiB/s) with 1 file(s) remaining
Completed 206.8 MiB/283.6 MiB (32.0 MiB/s) with 1 file(s) remaining
Completed 207.0 MiB/283.6 MiB (32.1 MiB/s) with 1 file(s) remaining
Completed 207.2 MiB/283.6 MiB (32.1 MiB/s) with 1 file(s) remaining
Completed 207.5 MiB/283.6 MiB (32.1 MiB/s) with 1 file(s) remaining
Completed 207.8 MiB/283.6 MiB (32.1 MiB/s) with 1 file(s) remaining
Completed 208.0 MiB/283.6 MiB (32.1 MiB/s) with 1 file(s) remaining
Completed 208.2 MiB/283.6 MiB (32.1 MiB/s) with 1 file(s) remaining
Completed 208.5 MiB/283.6 MiB (32.1 MiB/s) with 1 file(s) remaining
Completed 208.8 MiB/283.6 MiB (32.1 MiB/s) with 1 file(s) remaining
Completed 209.0 MiB/283.6 MiB (32.1 MiB/s) with 1 file(s) remaining
Completed 209.2 MiB/283.6 MiB (32.0 MiB/s) with 1 file(s) remaining
Completed 209.5 MiB/283.6 MiB (32.1 MiB/s) with 1 file(s) remaining
Completed 209.8 MiB/283.6 MiB (32.1 MiB/s) with 1 file(s) remaining
Completed 210.0 MiB/283.6 MiB (32.0 MiB/s) with 1 file(s) remaining
Completed 210.2 MiB/283.6 MiB (32.0 MiB/s) with 1 file(s) remaining
Completed 210.5 MiB/283.6 MiB (32.0 MiB/s) with 1 file(s) remaining
Completed 210.8 MiB/283.6 MiB (32.0 MiB/s) with 1 file(s) remaining
Completed 211.0 MiB/283.6 MiB (32.0 MiB/s) with 1 file(s) remaining
Completed 211.2 MiB/283.6 MiB (32.0 MiB/s) with 1 file(s) remaining
Completed 211.5 MiB/283.6 MiB (31.9 MiB/s) with 1 file(s) remaining
Completed 211.8 MiB/283.6 MiB (31.9 MiB/s) with 1 file(s) remaining
Completed 212.0 MiB/283.6 MiB (32.0 MiB/s) with 1 file(s) remaining
Completed 212.2 MiB/283.6 MiB (31.9 MiB/s) with 1 file(s) remaining
Completed 212.5 MiB/283.6 MiB (31.9 MiB/s) with 1 file(s) remaining
Completed 212.8 MiB/283.6 MiB (31.9 MiB/s) with 1 file(s) remaining
Completed 213.0 MiB/283.6 MiB (32.0 MiB/s) with 1 file(s) remaining
Completed 213.2 MiB/283.6 MiB (32.0 MiB/s) with 1 file(s) remaining
Completed 213.5 MiB/283.6 MiB (32.0 MiB/s) with 1 file(s) remaining
Completed 213.8 MiB/283.6 MiB (32.0 MiB/s) with 1 file(s) remaining
Completed 214.0 MiB/283.6 MiB (31.9 MiB/s) with 1 file(s) remaining
Completed 214.2 MiB/283.6 MiB (31.9 MiB/s) with 1 file(s) remaining
Completed 214.5 MiB/283.6 MiB (31.9 MiB/s) with 1 file(s) remaining
Completed 214.8 MiB/283.6 MiB (31.9 MiB/s) with 1 file(s) remaining
Completed 215.0 MiB/283.6 MiB (32.0 MiB/s) with 1 file(s) remaining
Completed 215.2 MiB/283.6 MiB (31.9 MiB/s) with 1 file(s) remaining
Completed 215.5 MiB/283.6 MiB (32.0 MiB/s) with 1 file(s) remaining
Completed 215.8 MiB/283.6 MiB (32.0 MiB/s) with 1 file(s) remaining
Completed 216.0 MiB/283.6 MiB (32.0 MiB/s) with 1 file(s) remaining
Completed 216.2 MiB/283.6 MiB (32.0 MiB/s) with 1 file(s) remaining
Completed 216.5 MiB/283.6 MiB (32.0 MiB/s) with 1 file(s) remaining
Completed 216.8 MiB/283.6 MiB (32.0 MiB/s) with 1 file(s) remaining
Completed 217.0 MiB/283.6 MiB (32.0 MiB/s) with 1 file(s) remaining
Completed 217.2 MiB/283.6 MiB (32.0 MiB/s) with 1 file(s) remaining
Completed 217.5 MiB/283.6 MiB (32.0 MiB/s) with 1 file(s) remaining
Completed 217.8 MiB/283.6 MiB (31.9 MiB/s) with 1 file(s) remaining
Completed 218.0 MiB/283.6 MiB (31.9 MiB/s) with 1 file(s) remaining
Completed 218.2 MiB/283.6 MiB (31.9 MiB/s) with 1 file(s) remaining
Completed 218.5 MiB/283.6 MiB (31.9 MiB/s) with 1 file(s) remaining
Completed 218.8 MiB/283.6 MiB (31.9 MiB/s) with 1 file(s) remaining
Completed 219.0 MiB/283.6 MiB (32.0 MiB/s) with 1 file(s) remaining
Completed 219.2 MiB/283.6 MiB (32.0 MiB/s) with 1 file(s) remaining
Completed 219.5 MiB/283.6 MiB (32.0 MiB/s) with 1 file(s) remaining
Completed 219.8 MiB/283.6 MiB (31.9 MiB/s) with 1 file(s) remaining
Completed 220.0 MiB/283.6 MiB (31.9 MiB/s) with 1 file(s) remaining
Completed 220.2 MiB/283.6 MiB (32.0 MiB/s) with 1 file(s) remaining
Completed 220.5 MiB/283.6 MiB (31.9 MiB/s) with 1 file(s) remaining
Completed 220.8 MiB/283.6 MiB (31.9 MiB/s) with 1 file(s) remaining
Completed 221.0 MiB/283.6 MiB (31.9 MiB/s) with 1 file(s) remaining
Completed 221.2 MiB/283.6 MiB (31.9 MiB/s) with 1 file(s) remaining
Completed 221.5 MiB/283.6 MiB (32.0 MiB/s) with 1 file(s) remaining
Completed 221.8 MiB/283.6 MiB (32.0 MiB/s) with 1 file(s) remaining
Completed 222.0 MiB/283.6 MiB (31.8 MiB/s) with 1 file(s) remaining
Completed 222.2 MiB/283.6 MiB (31.9 MiB/s) with 1 file(s) remaining
Completed 222.5 MiB/283.6 MiB (31.9 MiB/s) with 1 file(s) remaining
Completed 222.8 MiB/283.6 MiB (31.9 MiB/s) with 1 file(s) remaining
Completed 223.0 MiB/283.6 MiB (31.9 MiB/s) with 1 file(s) remaining
Completed 223.2 MiB/283.6 MiB (32.0 MiB/s) with 1 file(s) remaining
Completed 223.5 MiB/283.6 MiB (31.9 MiB/s) with 1 file(s) remaining
Completed 223.8 MiB/283.6 MiB (31.9 MiB/s) with 1 file(s) remaining
Completed 224.0 MiB/283.6 MiB (31.9 MiB/s) with 1 file(s) remaining
Completed 224.2 MiB/283.6 MiB (31.9 MiB/s) with 1 file(s) remaining
Completed 224.5 MiB/283.6 MiB (32.0 MiB/s) with 1 file(s) remaining
Completed 224.8 MiB/283.6 MiB (32.0 MiB/s) with 1 file(s) remaining
Completed 225.0 MiB/283.6 MiB (32.0 MiB/s) with 1 file(s) remaining
Completed 225.2 MiB/283.6 MiB (32.0 MiB/s) with 1 file(s) remaining
Completed 225.5 MiB/283.6 MiB (32.0 MiB/s) with 1 file(s) remaining
Completed 225.8 MiB/283.6 MiB (32.0 MiB/s) with 1 file(s) remaining
Completed 226.0 MiB/283.6 MiB (32.0 MiB/s) with 1 file(s) remaining
Completed 226.2 MiB/283.6 MiB (31.9 MiB/s) with 1 file(s) remaining
Completed 226.5 MiB/283.6 MiB (31.9 MiB/s) with 1 file(s) remaining
Completed 226.8 MiB/283.6 MiB (31.9 MiB/s) with 1 file(s) remaining
Completed 227.0 MiB/283.6 MiB (31.9 MiB/s) with 1 file(s) remaining
Completed 227.2 MiB/283.6 MiB (31.9 MiB/s) with 1 file(s) remaining
Completed 227.5 MiB/283.6 MiB (31.9 MiB/s) with 1 file(s) remaining
Completed 227.8 MiB/283.6 MiB (31.9 MiB/s) with 1 file(s) remaining
Completed 228.0 MiB/283.6 MiB (32.0 MiB/s) with 1 file(s) remaining
Completed 228.2 MiB/283.6 MiB (32.0 MiB/s) with 1 file(s) remaining
Completed 228.5 MiB/283.6 MiB (32.0 MiB/s) with 1 file(s) remaining
Completed 228.8 MiB/283.6 MiB (32.0 MiB/s) with 1 file(s) remaining
Completed 229.0 MiB/283.6 MiB (31.9 MiB/s) with 1 file(s) remaining
Completed 229.2 MiB/283.6 MiB (31.8 MiB/s) with 1 file(s) remaining
Completed 229.5 MiB/283.6 MiB (31.9 MiB/s) with 1 file(s) remaining
Completed 229.8 MiB/283.6 MiB (31.9 MiB/s) with 1 file(s) remaining
Completed 230.0 MiB/283.6 MiB (31.8 MiB/s) with 1 file(s) remaining
Completed 230.2 MiB/283.6 MiB (31.8 MiB/s) with 1 file(s) remaining
Completed 230.5 MiB/283.6 MiB (31.8 MiB/s) with 1 file(s) remaining
Completed 230.8 MiB/283.6 MiB (31.8 MiB/s) with 1 file(s) remaining
Completed 231.0 MiB/283.6 MiB (31.8 MiB/s) with 1 file(s) remaining
Completed 231.2 MiB/283.6 MiB (31.8 MiB/s) with 1 file(s) remaining
Completed 231.5 MiB/283.6 MiB (31.9 MiB/s) with 1 file(s) remaining
Completed 231.8 MiB/283.6 MiB (31.8 MiB/s) with 1 file(s) remaining
Completed 232.0 MiB/283.6 MiB (31.8 MiB/s) with 1 file(s) remaining
Completed 232.2 MiB/283.6 MiB (31.8 MiB/s) with 1 file(s) remaining
Completed 232.5 MiB/283.6 MiB (31.9 MiB/s) with 1 file(s) remaining
Completed 232.8 MiB/283.6 MiB (31.8 MiB/s) with 1 file(s) remaining
Completed 233.0 MiB/283.6 MiB (31.7 MiB/s) with 1 file(s) remaining
Completed 233.2 MiB/283.6 MiB (31.7 MiB/s) with 1 file(s) remaining
Completed 233.5 MiB/283.6 MiB (31.8 MiB/s) with 1 file(s) remaining
Completed 233.8 MiB/283.6 MiB (31.8 MiB/s) with 1 file(s) remaining
Completed 234.0 MiB/283.6 MiB (31.8 MiB/s) with 1 file(s) remaining
Completed 234.2 MiB/283.6 MiB (31.8 MiB/s) with 1 file(s) remaining
Completed 234.5 MiB/283.6 MiB (31.8 MiB/s) with 1 file(s) remaining
Completed 234.8 MiB/283.6 MiB (31.8 MiB/s) with 1 file(s) remaining
Completed 235.0 MiB/283.6 MiB (31.7 MiB/s) with 1 file(s) remaining
Completed 235.2 MiB/283.6 MiB (31.7 MiB/s) with 1 file(s) remaining
Completed 235.5 MiB/283.6 MiB (31.8 MiB/s) with 1 file(s) remaining
Completed 235.8 MiB/283.6 MiB (31.7 MiB/s) with 1 file(s) remaining
Completed 236.0 MiB/283.6 MiB (31.7 MiB/s) with 1 file(s) remaining
Completed 236.2 MiB/283.6 MiB (31.7 MiB/s) with 1 file(s) remaining
Completed 236.5 MiB/283.6 MiB (31.7 MiB/s) with 1 file(s) remaining
Completed 236.8 MiB/283.6 MiB (31.7 MiB/s) with 1 file(s) remaining
Completed 237.0 MiB/283.6 MiB (31.7 MiB/s) with 1 file(s) remaining
Completed 237.2 MiB/283.6 MiB (31.7 MiB/s) with 1 file(s) remaining
Completed 237.5 MiB/283.6 MiB (31.7 MiB/s) with 1 file(s) remaining
Completed 237.8 MiB/283.6 MiB (31.7 MiB/s) with 1 file(s) remaining
Completed 238.0 MiB/283.6 MiB (31.8 MiB/s) with 1 file(s) remaining
Completed 238.2 MiB/283.6 MiB (31.8 MiB/s) with 1 file(s) remaining
Completed 238.5 MiB/283.6 MiB (31.7 MiB/s) with 1 file(s) remaining
Completed 238.8 MiB/283.6 MiB (31.7 MiB/s) with 1 file(s) remaining
Completed 239.0 MiB/283.6 MiB (31.7 MiB/s) with 1 file(s) remaining
Completed 239.2 MiB/283.6 MiB (31.7 MiB/s) with 1 file(s) remaining
Completed 239.5 MiB/283.6 MiB (31.7 MiB/s) with 1 file(s) remaining
Completed 239.8 MiB/283.6 MiB (31.7 MiB/s) with 1 file(s) remaining
Completed 240.0 MiB/283.6 MiB (31.7 MiB/s) with 1 file(s) remaining
Completed 240.2 MiB/283.6 MiB (31.8 MiB/s) with 1 file(s) remaining
Completed 240.5 MiB/283.6 MiB (31.7 MiB/s) with 1 file(s) remaining
Completed 240.8 MiB/283.6 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 241.0 MiB/283.6 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 241.2 MiB/283.6 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 241.5 MiB/283.6 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 241.8 MiB/283.6 MiB (31.7 MiB/s) with 1 file(s) remaining
Completed 242.0 MiB/283.6 MiB (31.7 MiB/s) with 1 file(s) remaining
Completed 242.2 MiB/283.6 MiB (31.7 MiB/s) with 1 file(s) remaining
Completed 242.5 MiB/283.6 MiB (31.7 MiB/s) with 1 file(s) remaining
Completed 242.8 MiB/283.6 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 243.0 MiB/283.6 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 243.2 MiB/283.6 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 243.5 MiB/283.6 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 243.8 MiB/283.6 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 244.0 MiB/283.6 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 244.2 MiB/283.6 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 244.5 MiB/283.6 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 244.8 MiB/283.6 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 245.0 MiB/283.6 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 245.2 MiB/283.6 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 245.5 MiB/283.6 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 245.8 MiB/283.6 MiB (31.7 MiB/s) with 1 file(s) remaining
Completed 246.0 MiB/283.6 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 246.2 MiB/283.6 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 246.5 MiB/283.6 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 246.8 MiB/283.6 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 247.0 MiB/283.6 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 247.2 MiB/283.6 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 247.5 MiB/283.6 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 247.8 MiB/283.6 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 248.0 MiB/283.6 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 248.2 MiB/283.6 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 248.5 MiB/283.6 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 248.8 MiB/283.6 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 249.0 MiB/283.6 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 249.2 MiB/283.6 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 249.5 MiB/283.6 MiB (31.7 MiB/s) with 1 file(s) remaining
Completed 249.8 MiB/283.6 MiB (31.7 MiB/s) with 1 file(s) remaining
Completed 250.0 MiB/283.6 MiB (31.7 MiB/s) with 1 file(s) remaining
Completed 250.2 MiB/283.6 MiB (31.7 MiB/s) with 1 file(s) remaining
Completed 250.5 MiB/283.6 MiB (31.7 MiB/s) with 1 file(s) remaining
Completed 250.8 MiB/283.6 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 251.0 MiB/283.6 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 251.2 MiB/283.6 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 251.5 MiB/283.6 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 251.8 MiB/283.6 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 252.0 MiB/283.6 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 252.2 MiB/283.6 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 252.5 MiB/283.6 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 252.8 MiB/283.6 MiB (31.5 MiB/s) with 1 file(s) remaining
Completed 253.0 MiB/283.6 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 253.2 MiB/283.6 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 253.5 MiB/283.6 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 253.8 MiB/283.6 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 254.0 MiB/283.6 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 254.2 MiB/283.6 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 254.5 MiB/283.6 MiB (31.5 MiB/s) with 1 file(s) remaining
Completed 254.8 MiB/283.6 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 255.0 MiB/283.6 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 255.2 MiB/283.6 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 255.5 MiB/283.6 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 255.8 MiB/283.6 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 256.0 MiB/283.6 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 256.2 MiB/283.6 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 256.5 MiB/283.6 MiB (31.5 MiB/s) with 1 file(s) remaining
Completed 256.8 MiB/283.6 MiB (31.5 MiB/s) with 1 file(s) remaining
Completed 257.0 MiB/283.6 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 257.2 MiB/283.6 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 257.5 MiB/283.6 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 257.8 MiB/283.6 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 258.0 MiB/283.6 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 258.2 MiB/283.6 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 258.5 MiB/283.6 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 258.8 MiB/283.6 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 259.0 MiB/283.6 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 259.2 MiB/283.6 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 259.5 MiB/283.6 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 259.8 MiB/283.6 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 260.0 MiB/283.6 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 260.2 MiB/283.6 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 260.5 MiB/283.6 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 260.8 MiB/283.6 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 261.0 MiB/283.6 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 261.2 MiB/283.6 MiB (31.7 MiB/s) with 1 file(s) remaining
Completed 261.5 MiB/283.6 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 261.8 MiB/283.6 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 262.0 MiB/283.6 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 262.2 MiB/283.6 MiB (31.5 MiB/s) with 1 file(s) remaining
Completed 262.5 MiB/283.6 MiB (31.5 MiB/s) with 1 file(s) remaining
Completed 262.8 MiB/283.6 MiB (31.5 MiB/s) with 1 file(s) remaining
Completed 263.0 MiB/283.6 MiB (31.5 MiB/s) with 1 file(s) remaining
Completed 263.2 MiB/283.6 MiB (31.5 MiB/s) with 1 file(s) remaining
Completed 263.5 MiB/283.6 MiB (31.5 MiB/s) with 1 file(s) remaining
Completed 263.8 MiB/283.6 MiB (31.5 MiB/s) with 1 file(s) remaining
Completed 264.0 MiB/283.6 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 264.2 MiB/283.6 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 264.5 MiB/283.6 MiB (31.5 MiB/s) with 1 file(s) remaining
Completed 264.8 MiB/283.6 MiB (31.5 MiB/s) with 1 file(s) remaining
Completed 265.0 MiB/283.6 MiB (31.5 MiB/s) with 1 file(s) remaining
Completed 265.2 MiB/283.6 MiB (31.4 MiB/s) with 1 file(s) remaining
Completed 265.5 MiB/283.6 MiB (31.5 MiB/s) with 1 file(s) remaining
Completed 265.8 MiB/283.6 MiB (31.5 MiB/s) with 1 file(s) remaining
Completed 266.0 MiB/283.6 MiB (31.5 MiB/s) with 1 file(s) remaining
Completed 266.2 MiB/283.6 MiB (31.5 MiB/s) with 1 file(s) remaining
Completed 266.5 MiB/283.6 MiB (31.5 MiB/s) with 1 file(s) remaining
Completed 266.8 MiB/283.6 MiB (31.4 MiB/s) with 1 file(s) remaining
Completed 267.0 MiB/283.6 MiB (31.4 MiB/s) with 1 file(s) remaining
Completed 267.2 MiB/283.6 MiB (31.4 MiB/s) with 1 file(s) remaining
Completed 267.5 MiB/283.6 MiB (31.4 MiB/s) with 1 file(s) remaining
Completed 267.8 MiB/283.6 MiB (31.4 MiB/s) with 1 file(s) remaining
Completed 268.0 MiB/283.6 MiB (31.5 MiB/s) with 1 file(s) remaining
Completed 268.2 MiB/283.6 MiB (31.5 MiB/s) with 1 file(s) remaining
Completed 268.5 MiB/283.6 MiB (31.4 MiB/s) with 1 file(s) remaining
Completed 268.8 MiB/283.6 MiB (31.4 MiB/s) with 1 file(s) remaining
Completed 269.0 MiB/283.6 MiB (31.4 MiB/s) with 1 file(s) remaining
Completed 269.2 MiB/283.6 MiB (31.4 MiB/s) with 1 file(s) remaining
Completed 269.5 MiB/283.6 MiB (31.4 MiB/s) with 1 file(s) remaining
Completed 269.8 MiB/283.6 MiB (31.4 MiB/s) with 1 file(s) remaining
Completed 270.0 MiB/283.6 MiB (31.4 MiB/s) with 1 file(s) remaining
Completed 270.2 MiB/283.6 MiB (31.4 MiB/s) with 1 file(s) remaining
Completed 270.5 MiB/283.6 MiB (31.4 MiB/s) with 1 file(s) remaining
Completed 270.8 MiB/283.6 MiB (31.4 MiB/s) with 1 file(s) remaining
Completed 271.0 MiB/283.6 MiB (31.4 MiB/s) with 1 file(s) remaining
Completed 271.2 MiB/283.6 MiB (31.4 MiB/s) with 1 file(s) remaining
Completed 271.5 MiB/283.6 MiB (31.3 MiB/s) with 1 file(s) remaining
Completed 271.8 MiB/283.6 MiB (31.3 MiB/s) with 1 file(s) remaining
Completed 272.0 MiB/283.6 MiB (31.3 MiB/s) with 1 file(s) remaining
Completed 272.2 MiB/283.6 MiB (31.3 MiB/s) with 1 file(s) remaining
Completed 272.5 MiB/283.6 MiB (31.3 MiB/s) with 1 file(s) remaining
Completed 272.8 MiB/283.6 MiB (31.3 MiB/s) with 1 file(s) remaining
Completed 273.0 MiB/283.6 MiB (31.3 MiB/s) with 1 file(s) remaining
Completed 273.2 MiB/283.6 MiB (31.3 MiB/s) with 1 file(s) remaining
Completed 273.5 MiB/283.6 MiB (31.3 MiB/s) with 1 file(s) remaining
Completed 273.8 MiB/283.6 MiB (31.3 MiB/s) with 1 file(s) remaining
Completed 274.0 MiB/283.6 MiB (31.3 MiB/s) with 1 file(s) remaining
Completed 274.2 MiB/283.6 MiB (31.2 MiB/s) with 1 file(s) remaining
Completed 274.5 MiB/283.6 MiB (31.2 MiB/s) with 1 file(s) remaining
Completed 274.8 MiB/283.6 MiB (31.3 MiB/s) with 1 file(s) remaining
Completed 275.0 MiB/283.6 MiB (31.3 MiB/s) with 1 file(s) remaining
Completed 275.2 MiB/283.6 MiB (31.2 MiB/s) with 1 file(s) remaining
Completed 275.5 MiB/283.6 MiB (31.2 MiB/s) with 1 file(s) remaining
Completed 275.8 MiB/283.6 MiB (31.2 MiB/s) with 1 file(s) remaining
Completed 276.0 MiB/283.6 MiB (31.2 MiB/s) with 1 file(s) remaining
Completed 276.2 MiB/283.6 MiB (31.2 MiB/s) with 1 file(s) remaining
Completed 276.5 MiB/283.6 MiB (31.2 MiB/s) with 1 file(s) remaining
Completed 276.8 MiB/283.6 MiB (31.2 MiB/s) with 1 file(s) remaining
Completed 277.0 MiB/283.6 MiB (31.2 MiB/s) with 1 file(s) remaining
Completed 277.2 MiB/283.6 MiB (31.1 MiB/s) with 1 file(s) remaining
Completed 277.5 MiB/283.6 MiB (31.1 MiB/s) with 1 file(s) remaining
Completed 277.8 MiB/283.6 MiB (31.1 MiB/s) with 1 file(s) remaining
Completed 278.0 MiB/283.6 MiB (31.1 MiB/s) with 1 file(s) remaining
Completed 278.2 MiB/283.6 MiB (31.1 MiB/s) with 1 file(s) remaining
Completed 278.5 MiB/283.6 MiB (31.1 MiB/s) with 1 file(s) remaining
Completed 278.8 MiB/283.6 MiB (31.0 MiB/s) with 1 file(s) remaining
Completed 279.0 MiB/283.6 MiB (31.0 MiB/s) with 1 file(s) remaining
Completed 279.2 MiB/283.6 MiB (31.0 MiB/s) with 1 file(s) remaining
Completed 279.5 MiB/283.6 MiB (31.0 MiB/s) with 1 file(s) remaining
Completed 279.8 MiB/283.6 MiB (31.0 MiB/s) with 1 file(s) remaining
Completed 280.0 MiB/283.6 MiB (31.0 MiB/s) with 1 file(s) remaining
Completed 280.2 MiB/283.6 MiB (31.0 MiB/s) with 1 file(s) remaining
Completed 280.5 MiB/283.6 MiB (30.9 MiB/s) with 1 file(s) remaining
Completed 280.8 MiB/283.6 MiB (30.9 MiB/s) with 1 file(s) remaining
Completed 281.0 MiB/283.6 MiB (30.8 MiB/s) with 1 file(s) remaining
Completed 281.2 MiB/283.6 MiB (30.7 MiB/s) with 1 file(s) remaining
Completed 281.5 MiB/283.6 MiB (30.7 MiB/s) with 1 file(s) remaining
Completed 281.8 MiB/283.6 MiB (30.7 MiB/s) with 1 file(s) remaining
Completed 282.0 MiB/283.6 MiB (30.5 MiB/s) with 1 file(s) remaining
Completed 282.1 MiB/283.6 MiB (30.5 MiB/s) with 1 file(s) remaining
Completed 282.4 MiB/283.6 MiB (30.6 MiB/s) with 1 file(s) remaining
Completed 282.6 MiB/283.6 MiB (30.4 MiB/s) with 1 file(s) remaining
Completed 282.9 MiB/283.6 MiB (30.1 MiB/s) with 1 file(s) remaining
Completed 283.1 MiB/283.6 MiB (29.9 MiB/s) with 1 file(s) remaining
Completed 283.4 MiB/283.6 MiB (29.8 MiB/s) with 1 file(s) remaining
Completed 283.6 MiB/283.6 MiB (29.6 MiB/s) with 1 file(s) remaining
download: s3://dmap-epa-prod-anotedata/RShade/Rounded/Elevation/17d.tif to data/Elevation/17d.tif
Extracting Elevation Values
Elevation Extraction Complete
This step retrieves the values of an input raster stack at each point and puts those values in the correct fields. This step involves downloading what could be a fairly large raster dataset, which could take a few minutes. Each raster only needs to be downloaded the first time it is used.
If you are using a your own horizon angle dataset, it must be in the following format: Band 1: 0-degrees Horizon Angle Band 2: 45-degrees Horizon Angle Band 3: 90-degrees Horizon Angle Band 4: 135-degrees Horizon Angle Band 5: 180-degrees Horizon Angle Band 6: 225-degrees Horizon Angle Band 7: 270-degrees Horizon Angle Band 8: 315-degrees Horizon Angle
RShade_points <- extract_horizon_angle(RShade_points, rpu_boundaries)
Fetching Raster Datasets
Completed 256.0 KiB/660.5 MiB (869.9 KiB/s) with 1 file(s) remaining
Completed 512.0 KiB/660.5 MiB (1.7 MiB/s) with 1 file(s) remaining
Completed 768.0 KiB/660.5 MiB (2.5 MiB/s) with 1 file(s) remaining
Completed 1.0 MiB/660.5 MiB (3.2 MiB/s) with 1 file(s) remaining
Completed 1.2 MiB/660.5 MiB (4.0 MiB/s) with 1 file(s) remaining
Completed 1.5 MiB/660.5 MiB (4.5 MiB/s) with 1 file(s) remaining
Completed 1.8 MiB/660.5 MiB (5.3 MiB/s) with 1 file(s) remaining
Completed 2.0 MiB/660.5 MiB (5.9 MiB/s) with 1 file(s) remaining
Completed 2.2 MiB/660.5 MiB (6.6 MiB/s) with 1 file(s) remaining
Completed 2.5 MiB/660.5 MiB (7.3 MiB/s) with 1 file(s) remaining
Completed 2.8 MiB/660.5 MiB (8.0 MiB/s) with 1 file(s) remaining
Completed 3.0 MiB/660.5 MiB (8.7 MiB/s) with 1 file(s) remaining
Completed 3.2 MiB/660.5 MiB (9.4 MiB/s) with 1 file(s) remaining
Completed 3.5 MiB/660.5 MiB (10.0 MiB/s) with 1 file(s) remaining
Completed 3.8 MiB/660.5 MiB (10.7 MiB/s) with 1 file(s) remaining
Completed 4.0 MiB/660.5 MiB (11.3 MiB/s) with 1 file(s) remaining
Completed 4.2 MiB/660.5 MiB (11.9 MiB/s) with 1 file(s) remaining
Completed 4.5 MiB/660.5 MiB (12.5 MiB/s) with 1 file(s) remaining
Completed 4.8 MiB/660.5 MiB (13.2 MiB/s) with 1 file(s) remaining
Completed 5.0 MiB/660.5 MiB (13.5 MiB/s) with 1 file(s) remaining
Completed 5.2 MiB/660.5 MiB (13.9 MiB/s) with 1 file(s) remaining
Completed 5.5 MiB/660.5 MiB (14.5 MiB/s) with 1 file(s) remaining
Completed 5.8 MiB/660.5 MiB (14.7 MiB/s) with 1 file(s) remaining
Completed 6.0 MiB/660.5 MiB (15.2 MiB/s) with 1 file(s) remaining
Completed 6.2 MiB/660.5 MiB (15.8 MiB/s) with 1 file(s) remaining
Completed 6.5 MiB/660.5 MiB (16.4 MiB/s) with 1 file(s) remaining
Completed 6.8 MiB/660.5 MiB (17.0 MiB/s) with 1 file(s) remaining
Completed 7.0 MiB/660.5 MiB (17.3 MiB/s) with 1 file(s) remaining
Completed 7.2 MiB/660.5 MiB (17.9 MiB/s) with 1 file(s) remaining
Completed 7.5 MiB/660.5 MiB (18.4 MiB/s) with 1 file(s) remaining
Completed 7.8 MiB/660.5 MiB (18.6 MiB/s) with 1 file(s) remaining
Completed 8.0 MiB/660.5 MiB (19.2 MiB/s) with 1 file(s) remaining
Completed 8.2 MiB/660.5 MiB (19.5 MiB/s) with 1 file(s) remaining
Completed 8.5 MiB/660.5 MiB (20.0 MiB/s) with 1 file(s) remaining
Completed 8.8 MiB/660.5 MiB (20.2 MiB/s) with 1 file(s) remaining
Completed 9.0 MiB/660.5 MiB (20.7 MiB/s) with 1 file(s) remaining
Completed 9.2 MiB/660.5 MiB (21.2 MiB/s) with 1 file(s) remaining
Completed 9.5 MiB/660.5 MiB (21.4 MiB/s) with 1 file(s) remaining
Completed 9.8 MiB/660.5 MiB (21.9 MiB/s) with 1 file(s) remaining
Completed 10.0 MiB/660.5 MiB (22.3 MiB/s) with 1 file(s) remaining
Completed 10.2 MiB/660.5 MiB (22.7 MiB/s) with 1 file(s) remaining
Completed 10.5 MiB/660.5 MiB (22.8 MiB/s) with 1 file(s) remaining
Completed 10.8 MiB/660.5 MiB (23.3 MiB/s) with 1 file(s) remaining
Completed 11.0 MiB/660.5 MiB (23.8 MiB/s) with 1 file(s) remaining
Completed 11.2 MiB/660.5 MiB (24.0 MiB/s) with 1 file(s) remaining
Completed 11.5 MiB/660.5 MiB (24.2 MiB/s) with 1 file(s) remaining
Completed 11.8 MiB/660.5 MiB (24.6 MiB/s) with 1 file(s) remaining
Completed 12.0 MiB/660.5 MiB (24.7 MiB/s) with 1 file(s) remaining
Completed 12.2 MiB/660.5 MiB (25.1 MiB/s) with 1 file(s) remaining
Completed 12.5 MiB/660.5 MiB (25.5 MiB/s) with 1 file(s) remaining
Completed 12.8 MiB/660.5 MiB (25.9 MiB/s) with 1 file(s) remaining
Completed 13.0 MiB/660.5 MiB (26.4 MiB/s) with 1 file(s) remaining
Completed 13.2 MiB/660.5 MiB (26.8 MiB/s) with 1 file(s) remaining
Completed 13.5 MiB/660.5 MiB (27.1 MiB/s) with 1 file(s) remaining
Completed 13.8 MiB/660.5 MiB (27.5 MiB/s) with 1 file(s) remaining
Completed 14.0 MiB/660.5 MiB (27.8 MiB/s) with 1 file(s) remaining
Completed 14.2 MiB/660.5 MiB (27.6 MiB/s) with 1 file(s) remaining
Completed 14.5 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 14.8 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 15.0 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 15.2 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 15.5 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 15.8 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 16.0 MiB/660.5 MiB (29.7 MiB/s) with 1 file(s) remaining
Completed 16.2 MiB/660.5 MiB (29.7 MiB/s) with 1 file(s) remaining
Completed 16.5 MiB/660.5 MiB (30.1 MiB/s) with 1 file(s) remaining
Completed 16.8 MiB/660.5 MiB (30.4 MiB/s) with 1 file(s) remaining
Completed 17.0 MiB/660.5 MiB (30.8 MiB/s) with 1 file(s) remaining
Completed 17.2 MiB/660.5 MiB (31.1 MiB/s) with 1 file(s) remaining
Completed 17.5 MiB/660.5 MiB (31.2 MiB/s) with 1 file(s) remaining
Completed 17.8 MiB/660.5 MiB (31.1 MiB/s) with 1 file(s) remaining
Completed 18.0 MiB/660.5 MiB (31.5 MiB/s) with 1 file(s) remaining
Completed 18.2 MiB/660.5 MiB (31.5 MiB/s) with 1 file(s) remaining
Completed 18.5 MiB/660.5 MiB (31.8 MiB/s) with 1 file(s) remaining
Completed 18.8 MiB/660.5 MiB (32.0 MiB/s) with 1 file(s) remaining
Completed 19.0 MiB/660.5 MiB (32.3 MiB/s) with 1 file(s) remaining
Completed 19.2 MiB/660.5 MiB (32.3 MiB/s) with 1 file(s) remaining
Completed 19.5 MiB/660.5 MiB (32.7 MiB/s) with 1 file(s) remaining
Completed 19.8 MiB/660.5 MiB (33.0 MiB/s) with 1 file(s) remaining
Completed 20.0 MiB/660.5 MiB (33.4 MiB/s) with 1 file(s) remaining
Completed 20.2 MiB/660.5 MiB (33.7 MiB/s) with 1 file(s) remaining
Completed 20.5 MiB/660.5 MiB (33.8 MiB/s) with 1 file(s) remaining
Completed 20.8 MiB/660.5 MiB (33.6 MiB/s) with 1 file(s) remaining
Completed 21.0 MiB/660.5 MiB (33.9 MiB/s) with 1 file(s) remaining
Completed 21.2 MiB/660.5 MiB (34.2 MiB/s) with 1 file(s) remaining
Completed 21.5 MiB/660.5 MiB (34.4 MiB/s) with 1 file(s) remaining
Completed 21.8 MiB/660.5 MiB (34.7 MiB/s) with 1 file(s) remaining
Completed 22.0 MiB/660.5 MiB (34.4 MiB/s) with 1 file(s) remaining
Completed 22.2 MiB/660.5 MiB (34.3 MiB/s) with 1 file(s) remaining
Completed 22.5 MiB/660.5 MiB (34.6 MiB/s) with 1 file(s) remaining
Completed 22.8 MiB/660.5 MiB (34.9 MiB/s) with 1 file(s) remaining
Completed 23.0 MiB/660.5 MiB (34.8 MiB/s) with 1 file(s) remaining
Completed 23.2 MiB/660.5 MiB (34.6 MiB/s) with 1 file(s) remaining
Completed 23.5 MiB/660.5 MiB (34.9 MiB/s) with 1 file(s) remaining
Completed 23.8 MiB/660.5 MiB (34.9 MiB/s) with 1 file(s) remaining
Completed 24.0 MiB/660.5 MiB (35.2 MiB/s) with 1 file(s) remaining
Completed 24.2 MiB/660.5 MiB (35.4 MiB/s) with 1 file(s) remaining
Completed 24.5 MiB/660.5 MiB (35.7 MiB/s) with 1 file(s) remaining
Completed 24.8 MiB/660.5 MiB (35.9 MiB/s) with 1 file(s) remaining
Completed 25.0 MiB/660.5 MiB (35.6 MiB/s) with 1 file(s) remaining
Completed 25.2 MiB/660.5 MiB (35.6 MiB/s) with 1 file(s) remaining
Completed 25.5 MiB/660.5 MiB (35.9 MiB/s) with 1 file(s) remaining
Completed 25.8 MiB/660.5 MiB (35.7 MiB/s) with 1 file(s) remaining
Completed 26.0 MiB/660.5 MiB (35.7 MiB/s) with 1 file(s) remaining
Completed 26.2 MiB/660.5 MiB (35.8 MiB/s) with 1 file(s) remaining
Completed 26.5 MiB/660.5 MiB (35.5 MiB/s) with 1 file(s) remaining
Completed 26.8 MiB/660.5 MiB (35.7 MiB/s) with 1 file(s) remaining
Completed 27.0 MiB/660.5 MiB (35.2 MiB/s) with 1 file(s) remaining
Completed 27.2 MiB/660.5 MiB (35.4 MiB/s) with 1 file(s) remaining
Completed 27.5 MiB/660.5 MiB (35.7 MiB/s) with 1 file(s) remaining
Completed 27.8 MiB/660.5 MiB (35.1 MiB/s) with 1 file(s) remaining
Completed 28.0 MiB/660.5 MiB (35.4 MiB/s) with 1 file(s) remaining
Completed 28.2 MiB/660.5 MiB (35.7 MiB/s) with 1 file(s) remaining
Completed 28.5 MiB/660.5 MiB (35.5 MiB/s) with 1 file(s) remaining
Completed 28.8 MiB/660.5 MiB (35.7 MiB/s) with 1 file(s) remaining
Completed 29.0 MiB/660.5 MiB (35.6 MiB/s) with 1 file(s) remaining
Completed 29.2 MiB/660.5 MiB (35.1 MiB/s) with 1 file(s) remaining
Completed 29.5 MiB/660.5 MiB (35.4 MiB/s) with 1 file(s) remaining
Completed 29.8 MiB/660.5 MiB (35.7 MiB/s) with 1 file(s) remaining
Completed 30.0 MiB/660.5 MiB (35.6 MiB/s) with 1 file(s) remaining
Completed 30.2 MiB/660.5 MiB (35.6 MiB/s) with 1 file(s) remaining
Completed 30.5 MiB/660.5 MiB (35.4 MiB/s) with 1 file(s) remaining
Completed 30.8 MiB/660.5 MiB (34.7 MiB/s) with 1 file(s) remaining
Completed 31.0 MiB/660.5 MiB (35.0 MiB/s) with 1 file(s) remaining
Completed 31.2 MiB/660.5 MiB (35.1 MiB/s) with 1 file(s) remaining
Completed 31.5 MiB/660.5 MiB (35.3 MiB/s) with 1 file(s) remaining
Completed 31.8 MiB/660.5 MiB (35.5 MiB/s) with 1 file(s) remaining
Completed 32.0 MiB/660.5 MiB (35.4 MiB/s) with 1 file(s) remaining
Completed 32.2 MiB/660.5 MiB (34.7 MiB/s) with 1 file(s) remaining
Completed 32.5 MiB/660.5 MiB (34.8 MiB/s) with 1 file(s) remaining
Completed 32.8 MiB/660.5 MiB (34.9 MiB/s) with 1 file(s) remaining
Completed 33.0 MiB/660.5 MiB (35.0 MiB/s) with 1 file(s) remaining
Completed 33.2 MiB/660.5 MiB (35.1 MiB/s) with 1 file(s) remaining
Completed 33.5 MiB/660.5 MiB (35.3 MiB/s) with 1 file(s) remaining
Completed 33.8 MiB/660.5 MiB (35.3 MiB/s) with 1 file(s) remaining
Completed 34.0 MiB/660.5 MiB (35.0 MiB/s) with 1 file(s) remaining
Completed 34.2 MiB/660.5 MiB (35.2 MiB/s) with 1 file(s) remaining
Completed 34.5 MiB/660.5 MiB (34.9 MiB/s) with 1 file(s) remaining
Completed 34.8 MiB/660.5 MiB (34.9 MiB/s) with 1 file(s) remaining
Completed 35.0 MiB/660.5 MiB (34.6 MiB/s) with 1 file(s) remaining
Completed 35.2 MiB/660.5 MiB (34.8 MiB/s) with 1 file(s) remaining
Completed 35.5 MiB/660.5 MiB (35.0 MiB/s) with 1 file(s) remaining
Completed 35.8 MiB/660.5 MiB (35.1 MiB/s) with 1 file(s) remaining
Completed 36.0 MiB/660.5 MiB (34.8 MiB/s) with 1 file(s) remaining
Completed 36.2 MiB/660.5 MiB (34.7 MiB/s) with 1 file(s) remaining
Completed 36.5 MiB/660.5 MiB (34.4 MiB/s) with 1 file(s) remaining
Completed 36.8 MiB/660.5 MiB (34.5 MiB/s) with 1 file(s) remaining
Completed 37.0 MiB/660.5 MiB (34.6 MiB/s) with 1 file(s) remaining
Completed 37.2 MiB/660.5 MiB (34.6 MiB/s) with 1 file(s) remaining
Completed 37.5 MiB/660.5 MiB (34.5 MiB/s) with 1 file(s) remaining
Completed 37.8 MiB/660.5 MiB (34.3 MiB/s) with 1 file(s) remaining
Completed 38.0 MiB/660.5 MiB (34.5 MiB/s) with 1 file(s) remaining
Completed 38.2 MiB/660.5 MiB (34.7 MiB/s) with 1 file(s) remaining
Completed 38.5 MiB/660.5 MiB (34.7 MiB/s) with 1 file(s) remaining
Completed 38.8 MiB/660.5 MiB (34.7 MiB/s) with 1 file(s) remaining
Completed 39.0 MiB/660.5 MiB (34.8 MiB/s) with 1 file(s) remaining
Completed 39.2 MiB/660.5 MiB (34.4 MiB/s) with 1 file(s) remaining
Completed 39.5 MiB/660.5 MiB (34.5 MiB/s) with 1 file(s) remaining
Completed 39.8 MiB/660.5 MiB (34.2 MiB/s) with 1 file(s) remaining
Completed 40.0 MiB/660.5 MiB (34.4 MiB/s) with 1 file(s) remaining
Completed 40.2 MiB/660.5 MiB (34.0 MiB/s) with 1 file(s) remaining
Completed 40.5 MiB/660.5 MiB (33.7 MiB/s) with 1 file(s) remaining
Completed 40.8 MiB/660.5 MiB (33.8 MiB/s) with 1 file(s) remaining
Completed 41.0 MiB/660.5 MiB (33.7 MiB/s) with 1 file(s) remaining
Completed 41.2 MiB/660.5 MiB (33.8 MiB/s) with 1 file(s) remaining
Completed 41.5 MiB/660.5 MiB (33.8 MiB/s) with 1 file(s) remaining
Completed 41.8 MiB/660.5 MiB (34.0 MiB/s) with 1 file(s) remaining
Completed 42.0 MiB/660.5 MiB (33.7 MiB/s) with 1 file(s) remaining
Completed 42.2 MiB/660.5 MiB (33.9 MiB/s) with 1 file(s) remaining
Completed 42.5 MiB/660.5 MiB (33.8 MiB/s) with 1 file(s) remaining
Completed 42.8 MiB/660.5 MiB (34.0 MiB/s) with 1 file(s) remaining
Completed 43.0 MiB/660.5 MiB (33.9 MiB/s) with 1 file(s) remaining
Completed 43.2 MiB/660.5 MiB (33.9 MiB/s) with 1 file(s) remaining
Completed 43.5 MiB/660.5 MiB (34.1 MiB/s) with 1 file(s) remaining
Completed 43.8 MiB/660.5 MiB (33.7 MiB/s) with 1 file(s) remaining
Completed 44.0 MiB/660.5 MiB (33.5 MiB/s) with 1 file(s) remaining
Completed 44.2 MiB/660.5 MiB (33.3 MiB/s) with 1 file(s) remaining
Completed 44.5 MiB/660.5 MiB (33.4 MiB/s) with 1 file(s) remaining
Completed 44.8 MiB/660.5 MiB (33.2 MiB/s) with 1 file(s) remaining
Completed 45.0 MiB/660.5 MiB (33.2 MiB/s) with 1 file(s) remaining
Completed 45.2 MiB/660.5 MiB (33.3 MiB/s) with 1 file(s) remaining
Completed 45.5 MiB/660.5 MiB (33.5 MiB/s) with 1 file(s) remaining
Completed 45.8 MiB/660.5 MiB (33.5 MiB/s) with 1 file(s) remaining
Completed 46.0 MiB/660.5 MiB (33.5 MiB/s) with 1 file(s) remaining
Completed 46.2 MiB/660.5 MiB (33.7 MiB/s) with 1 file(s) remaining
Completed 46.5 MiB/660.5 MiB (33.7 MiB/s) with 1 file(s) remaining
Completed 46.8 MiB/660.5 MiB (33.5 MiB/s) with 1 file(s) remaining
Completed 47.0 MiB/660.5 MiB (33.5 MiB/s) with 1 file(s) remaining
Completed 47.2 MiB/660.5 MiB (33.6 MiB/s) with 1 file(s) remaining
Completed 47.5 MiB/660.5 MiB (33.6 MiB/s) with 1 file(s) remaining
Completed 47.8 MiB/660.5 MiB (33.5 MiB/s) with 1 file(s) remaining
Completed 48.0 MiB/660.5 MiB (33.6 MiB/s) with 1 file(s) remaining
Completed 48.2 MiB/660.5 MiB (33.6 MiB/s) with 1 file(s) remaining
Completed 48.5 MiB/660.5 MiB (33.4 MiB/s) with 1 file(s) remaining
Completed 48.8 MiB/660.5 MiB (33.5 MiB/s) with 1 file(s) remaining
Completed 49.0 MiB/660.5 MiB (33.2 MiB/s) with 1 file(s) remaining
Completed 49.2 MiB/660.5 MiB (33.3 MiB/s) with 1 file(s) remaining
Completed 49.5 MiB/660.5 MiB (33.3 MiB/s) with 1 file(s) remaining
Completed 49.8 MiB/660.5 MiB (33.3 MiB/s) with 1 file(s) remaining
Completed 50.0 MiB/660.5 MiB (33.4 MiB/s) with 1 file(s) remaining
Completed 50.2 MiB/660.5 MiB (33.4 MiB/s) with 1 file(s) remaining
Completed 50.5 MiB/660.5 MiB (33.5 MiB/s) with 1 file(s) remaining
Completed 50.8 MiB/660.5 MiB (33.6 MiB/s) with 1 file(s) remaining
Completed 51.0 MiB/660.5 MiB (33.7 MiB/s) with 1 file(s) remaining
Completed 51.2 MiB/660.5 MiB (33.8 MiB/s) with 1 file(s) remaining
Completed 51.5 MiB/660.5 MiB (33.7 MiB/s) with 1 file(s) remaining
Completed 51.8 MiB/660.5 MiB (33.3 MiB/s) with 1 file(s) remaining
Completed 52.0 MiB/660.5 MiB (33.4 MiB/s) with 1 file(s) remaining
Completed 52.2 MiB/660.5 MiB (33.2 MiB/s) with 1 file(s) remaining
Completed 52.5 MiB/660.5 MiB (33.3 MiB/s) with 1 file(s) remaining
Completed 52.8 MiB/660.5 MiB (33.0 MiB/s) with 1 file(s) remaining
Completed 53.0 MiB/660.5 MiB (33.1 MiB/s) with 1 file(s) remaining
Completed 53.2 MiB/660.5 MiB (33.2 MiB/s) with 1 file(s) remaining
Completed 53.5 MiB/660.5 MiB (33.3 MiB/s) with 1 file(s) remaining
Completed 53.8 MiB/660.5 MiB (33.2 MiB/s) with 1 file(s) remaining
Completed 54.0 MiB/660.5 MiB (33.3 MiB/s) with 1 file(s) remaining
Completed 54.2 MiB/660.5 MiB (33.3 MiB/s) with 1 file(s) remaining
Completed 54.5 MiB/660.5 MiB (33.2 MiB/s) with 1 file(s) remaining
Completed 54.8 MiB/660.5 MiB (33.2 MiB/s) with 1 file(s) remaining
Completed 55.0 MiB/660.5 MiB (33.2 MiB/s) with 1 file(s) remaining
Completed 55.2 MiB/660.5 MiB (33.2 MiB/s) with 1 file(s) remaining
Completed 55.5 MiB/660.5 MiB (33.3 MiB/s) with 1 file(s) remaining
Completed 55.8 MiB/660.5 MiB (33.3 MiB/s) with 1 file(s) remaining
Completed 56.0 MiB/660.5 MiB (33.4 MiB/s) with 1 file(s) remaining
Completed 56.2 MiB/660.5 MiB (33.4 MiB/s) with 1 file(s) remaining
Completed 56.5 MiB/660.5 MiB (33.5 MiB/s) with 1 file(s) remaining
Completed 56.8 MiB/660.5 MiB (33.6 MiB/s) with 1 file(s) remaining
Completed 57.0 MiB/660.5 MiB (33.6 MiB/s) with 1 file(s) remaining
Completed 57.2 MiB/660.5 MiB (33.4 MiB/s) with 1 file(s) remaining
Completed 57.5 MiB/660.5 MiB (33.6 MiB/s) with 1 file(s) remaining
Completed 57.8 MiB/660.5 MiB (33.6 MiB/s) with 1 file(s) remaining
Completed 58.0 MiB/660.5 MiB (33.5 MiB/s) with 1 file(s) remaining
Completed 58.2 MiB/660.5 MiB (33.5 MiB/s) with 1 file(s) remaining
Completed 58.5 MiB/660.5 MiB (33.3 MiB/s) with 1 file(s) remaining
Completed 58.8 MiB/660.5 MiB (33.4 MiB/s) with 1 file(s) remaining
Completed 59.0 MiB/660.5 MiB (33.5 MiB/s) with 1 file(s) remaining
Completed 59.2 MiB/660.5 MiB (33.5 MiB/s) with 1 file(s) remaining
Completed 59.5 MiB/660.5 MiB (33.5 MiB/s) with 1 file(s) remaining
Completed 59.8 MiB/660.5 MiB (33.4 MiB/s) with 1 file(s) remaining
Completed 60.0 MiB/660.5 MiB (33.1 MiB/s) with 1 file(s) remaining
Completed 60.2 MiB/660.5 MiB (33.0 MiB/s) with 1 file(s) remaining
Completed 60.5 MiB/660.5 MiB (33.2 MiB/s) with 1 file(s) remaining
Completed 60.8 MiB/660.5 MiB (33.2 MiB/s) with 1 file(s) remaining
Completed 61.0 MiB/660.5 MiB (33.3 MiB/s) with 1 file(s) remaining
Completed 61.2 MiB/660.5 MiB (33.0 MiB/s) with 1 file(s) remaining
Completed 61.5 MiB/660.5 MiB (32.6 MiB/s) with 1 file(s) remaining
Completed 61.8 MiB/660.5 MiB (32.7 MiB/s) with 1 file(s) remaining
Completed 62.0 MiB/660.5 MiB (32.7 MiB/s) with 1 file(s) remaining
Completed 62.2 MiB/660.5 MiB (32.1 MiB/s) with 1 file(s) remaining
Completed 62.5 MiB/660.5 MiB (32.1 MiB/s) with 1 file(s) remaining
Completed 62.8 MiB/660.5 MiB (32.2 MiB/s) with 1 file(s) remaining
Completed 63.0 MiB/660.5 MiB (32.3 MiB/s) with 1 file(s) remaining
Completed 63.2 MiB/660.5 MiB (32.4 MiB/s) with 1 file(s) remaining
Completed 63.5 MiB/660.5 MiB (32.3 MiB/s) with 1 file(s) remaining
Completed 63.8 MiB/660.5 MiB (32.5 MiB/s) with 1 file(s) remaining
Completed 64.0 MiB/660.5 MiB (32.0 MiB/s) with 1 file(s) remaining
Completed 64.2 MiB/660.5 MiB (31.9 MiB/s) with 1 file(s) remaining
Completed 64.5 MiB/660.5 MiB (31.9 MiB/s) with 1 file(s) remaining
Completed 64.8 MiB/660.5 MiB (31.9 MiB/s) with 1 file(s) remaining
Completed 65.0 MiB/660.5 MiB (32.0 MiB/s) with 1 file(s) remaining
Completed 65.2 MiB/660.5 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 65.5 MiB/660.5 MiB (31.5 MiB/s) with 1 file(s) remaining
Completed 65.8 MiB/660.5 MiB (31.5 MiB/s) with 1 file(s) remaining
Completed 66.0 MiB/660.5 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 66.2 MiB/660.5 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 66.5 MiB/660.5 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 66.8 MiB/660.5 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 67.0 MiB/660.5 MiB (31.5 MiB/s) with 1 file(s) remaining
Completed 67.2 MiB/660.5 MiB (31.5 MiB/s) with 1 file(s) remaining
Completed 67.5 MiB/660.5 MiB (31.5 MiB/s) with 1 file(s) remaining
Completed 67.8 MiB/660.5 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 68.0 MiB/660.5 MiB (31.5 MiB/s) with 1 file(s) remaining
Completed 68.2 MiB/660.5 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 68.5 MiB/660.5 MiB (31.7 MiB/s) with 1 file(s) remaining
Completed 68.8 MiB/660.5 MiB (31.7 MiB/s) with 1 file(s) remaining
Completed 69.0 MiB/660.5 MiB (31.7 MiB/s) with 1 file(s) remaining
Completed 69.2 MiB/660.5 MiB (31.8 MiB/s) with 1 file(s) remaining
Completed 69.5 MiB/660.5 MiB (31.5 MiB/s) with 1 file(s) remaining
Completed 69.8 MiB/660.5 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 70.0 MiB/660.5 MiB (31.7 MiB/s) with 1 file(s) remaining
Completed 70.2 MiB/660.5 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 70.5 MiB/660.5 MiB (31.7 MiB/s) with 1 file(s) remaining
Completed 70.8 MiB/660.5 MiB (31.7 MiB/s) with 1 file(s) remaining
Completed 71.0 MiB/660.5 MiB (31.8 MiB/s) with 1 file(s) remaining
Completed 71.2 MiB/660.5 MiB (31.8 MiB/s) with 1 file(s) remaining
Completed 71.5 MiB/660.5 MiB (31.9 MiB/s) with 1 file(s) remaining
Completed 71.8 MiB/660.5 MiB (31.9 MiB/s) with 1 file(s) remaining
Completed 72.0 MiB/660.5 MiB (31.9 MiB/s) with 1 file(s) remaining
Completed 72.2 MiB/660.5 MiB (32.0 MiB/s) with 1 file(s) remaining
Completed 72.5 MiB/660.5 MiB (31.7 MiB/s) with 1 file(s) remaining
Completed 72.8 MiB/660.5 MiB (31.7 MiB/s) with 1 file(s) remaining
Completed 73.0 MiB/660.5 MiB (31.7 MiB/s) with 1 file(s) remaining
Completed 73.2 MiB/660.5 MiB (31.7 MiB/s) with 1 file(s) remaining
Completed 73.5 MiB/660.5 MiB (31.8 MiB/s) with 1 file(s) remaining
Completed 73.8 MiB/660.5 MiB (31.9 MiB/s) with 1 file(s) remaining
Completed 74.0 MiB/660.5 MiB (31.8 MiB/s) with 1 file(s) remaining
Completed 74.2 MiB/660.5 MiB (31.8 MiB/s) with 1 file(s) remaining
Completed 74.5 MiB/660.5 MiB (31.9 MiB/s) with 1 file(s) remaining
Completed 74.8 MiB/660.5 MiB (31.9 MiB/s) with 1 file(s) remaining
Completed 75.0 MiB/660.5 MiB (32.0 MiB/s) with 1 file(s) remaining
Completed 75.2 MiB/660.5 MiB (32.0 MiB/s) with 1 file(s) remaining
Completed 75.5 MiB/660.5 MiB (31.9 MiB/s) with 1 file(s) remaining
Completed 75.8 MiB/660.5 MiB (31.9 MiB/s) with 1 file(s) remaining
Completed 76.0 MiB/660.5 MiB (31.7 MiB/s) with 1 file(s) remaining
Completed 76.2 MiB/660.5 MiB (31.7 MiB/s) with 1 file(s) remaining
Completed 76.5 MiB/660.5 MiB (31.8 MiB/s) with 1 file(s) remaining
Completed 76.8 MiB/660.5 MiB (31.8 MiB/s) with 1 file(s) remaining
Completed 77.0 MiB/660.5 MiB (31.9 MiB/s) with 1 file(s) remaining
Completed 77.2 MiB/660.5 MiB (31.9 MiB/s) with 1 file(s) remaining
Completed 77.5 MiB/660.5 MiB (31.9 MiB/s) with 1 file(s) remaining
Completed 77.8 MiB/660.5 MiB (31.7 MiB/s) with 1 file(s) remaining
Completed 78.0 MiB/660.5 MiB (31.5 MiB/s) with 1 file(s) remaining
Completed 78.2 MiB/660.5 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 78.5 MiB/660.5 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 78.8 MiB/660.5 MiB (31.4 MiB/s) with 1 file(s) remaining
Completed 79.0 MiB/660.5 MiB (31.5 MiB/s) with 1 file(s) remaining
Completed 79.2 MiB/660.5 MiB (31.3 MiB/s) with 1 file(s) remaining
Completed 79.5 MiB/660.5 MiB (31.4 MiB/s) with 1 file(s) remaining
Completed 79.8 MiB/660.5 MiB (31.4 MiB/s) with 1 file(s) remaining
Completed 80.0 MiB/660.5 MiB (31.4 MiB/s) with 1 file(s) remaining
Completed 80.2 MiB/660.5 MiB (31.4 MiB/s) with 1 file(s) remaining
Completed 80.5 MiB/660.5 MiB (31.4 MiB/s) with 1 file(s) remaining
Completed 80.8 MiB/660.5 MiB (31.4 MiB/s) with 1 file(s) remaining
Completed 81.0 MiB/660.5 MiB (31.5 MiB/s) with 1 file(s) remaining
Completed 81.2 MiB/660.5 MiB (31.5 MiB/s) with 1 file(s) remaining
Completed 81.5 MiB/660.5 MiB (31.4 MiB/s) with 1 file(s) remaining
Completed 81.8 MiB/660.5 MiB (31.4 MiB/s) with 1 file(s) remaining
Completed 82.0 MiB/660.5 MiB (31.5 MiB/s) with 1 file(s) remaining
Completed 82.2 MiB/660.5 MiB (31.5 MiB/s) with 1 file(s) remaining
Completed 82.5 MiB/660.5 MiB (31.5 MiB/s) with 1 file(s) remaining
Completed 82.8 MiB/660.5 MiB (31.6 MiB/s) with 1 file(s) remaining
Completed 83.0 MiB/660.5 MiB (31.4 MiB/s) with 1 file(s) remaining
Completed 83.2 MiB/660.5 MiB (31.4 MiB/s) with 1 file(s) remaining
Completed 83.5 MiB/660.5 MiB (31.3 MiB/s) with 1 file(s) remaining
Completed 83.8 MiB/660.5 MiB (31.4 MiB/s) with 1 file(s) remaining
Completed 84.0 MiB/660.5 MiB (31.4 MiB/s) with 1 file(s) remaining
Completed 84.2 MiB/660.5 MiB (31.4 MiB/s) with 1 file(s) remaining
Completed 84.5 MiB/660.5 MiB (31.4 MiB/s) with 1 file(s) remaining
Completed 84.8 MiB/660.5 MiB (31.2 MiB/s) with 1 file(s) remaining
Completed 85.0 MiB/660.5 MiB (31.3 MiB/s) with 1 file(s) remaining
Completed 85.2 MiB/660.5 MiB (31.4 MiB/s) with 1 file(s) remaining
Completed 85.5 MiB/660.5 MiB (31.3 MiB/s) with 1 file(s) remaining
Completed 85.8 MiB/660.5 MiB (31.2 MiB/s) with 1 file(s) remaining
Completed 86.0 MiB/660.5 MiB (31.3 MiB/s) with 1 file(s) remaining
Completed 86.2 MiB/660.5 MiB (31.3 MiB/s) with 1 file(s) remaining
Completed 86.5 MiB/660.5 MiB (31.4 MiB/s) with 1 file(s) remaining
Completed 86.8 MiB/660.5 MiB (31.3 MiB/s) with 1 file(s) remaining
Completed 87.0 MiB/660.5 MiB (31.4 MiB/s) with 1 file(s) remaining
Completed 87.2 MiB/660.5 MiB (30.9 MiB/s) with 1 file(s) remaining
Completed 87.5 MiB/660.5 MiB (31.0 MiB/s) with 1 file(s) remaining
Completed 87.8 MiB/660.5 MiB (31.0 MiB/s) with 1 file(s) remaining
Completed 88.0 MiB/660.5 MiB (31.0 MiB/s) with 1 file(s) remaining
Completed 88.2 MiB/660.5 MiB (31.0 MiB/s) with 1 file(s) remaining
Completed 88.5 MiB/660.5 MiB (30.8 MiB/s) with 1 file(s) remaining
Completed 88.8 MiB/660.5 MiB (30.7 MiB/s) with 1 file(s) remaining
Completed 89.0 MiB/660.5 MiB (30.8 MiB/s) with 1 file(s) remaining
Completed 89.2 MiB/660.5 MiB (30.7 MiB/s) with 1 file(s) remaining
Completed 89.5 MiB/660.5 MiB (30.6 MiB/s) with 1 file(s) remaining
Completed 89.8 MiB/660.5 MiB (30.5 MiB/s) with 1 file(s) remaining
Completed 90.0 MiB/660.5 MiB (30.5 MiB/s) with 1 file(s) remaining
Completed 90.2 MiB/660.5 MiB (30.5 MiB/s) with 1 file(s) remaining
Completed 90.5 MiB/660.5 MiB (30.4 MiB/s) with 1 file(s) remaining
Completed 90.8 MiB/660.5 MiB (30.4 MiB/s) with 1 file(s) remaining
Completed 91.0 MiB/660.5 MiB (30.4 MiB/s) with 1 file(s) remaining
Completed 91.2 MiB/660.5 MiB (30.2 MiB/s) with 1 file(s) remaining
Completed 91.5 MiB/660.5 MiB (30.1 MiB/s) with 1 file(s) remaining
Completed 91.8 MiB/660.5 MiB (30.0 MiB/s) with 1 file(s) remaining
Completed 92.0 MiB/660.5 MiB (30.1 MiB/s) with 1 file(s) remaining
Completed 92.2 MiB/660.5 MiB (30.0 MiB/s) with 1 file(s) remaining
Completed 92.5 MiB/660.5 MiB (30.0 MiB/s) with 1 file(s) remaining
Completed 92.8 MiB/660.5 MiB (29.8 MiB/s) with 1 file(s) remaining
Completed 93.0 MiB/660.5 MiB (29.8 MiB/s) with 1 file(s) remaining
Completed 93.2 MiB/660.5 MiB (29.8 MiB/s) with 1 file(s) remaining
Completed 93.5 MiB/660.5 MiB (29.8 MiB/s) with 1 file(s) remaining
Completed 93.8 MiB/660.5 MiB (29.9 MiB/s) with 1 file(s) remaining
Completed 94.0 MiB/660.5 MiB (30.0 MiB/s) with 1 file(s) remaining
Completed 94.2 MiB/660.5 MiB (30.0 MiB/s) with 1 file(s) remaining
Completed 94.5 MiB/660.5 MiB (29.8 MiB/s) with 1 file(s) remaining
Completed 94.8 MiB/660.5 MiB (29.8 MiB/s) with 1 file(s) remaining
Completed 95.0 MiB/660.5 MiB (29.8 MiB/s) with 1 file(s) remaining
Completed 95.2 MiB/660.5 MiB (29.8 MiB/s) with 1 file(s) remaining
Completed 95.5 MiB/660.5 MiB (29.8 MiB/s) with 1 file(s) remaining
Completed 95.8 MiB/660.5 MiB (29.8 MiB/s) with 1 file(s) remaining
Completed 96.0 MiB/660.5 MiB (29.9 MiB/s) with 1 file(s) remaining
Completed 96.2 MiB/660.5 MiB (29.9 MiB/s) with 1 file(s) remaining
Completed 96.5 MiB/660.5 MiB (29.7 MiB/s) with 1 file(s) remaining
Completed 96.8 MiB/660.5 MiB (29.8 MiB/s) with 1 file(s) remaining
Completed 97.0 MiB/660.5 MiB (29.8 MiB/s) with 1 file(s) remaining
Completed 97.2 MiB/660.5 MiB (29.8 MiB/s) with 1 file(s) remaining
Completed 97.5 MiB/660.5 MiB (29.9 MiB/s) with 1 file(s) remaining
Completed 97.8 MiB/660.5 MiB (29.9 MiB/s) with 1 file(s) remaining
Completed 98.0 MiB/660.5 MiB (30.0 MiB/s) with 1 file(s) remaining
Completed 98.2 MiB/660.5 MiB (29.8 MiB/s) with 1 file(s) remaining
Completed 98.5 MiB/660.5 MiB (29.8 MiB/s) with 1 file(s) remaining
Completed 98.8 MiB/660.5 MiB (29.8 MiB/s) with 1 file(s) remaining
Completed 99.0 MiB/660.5 MiB (29.8 MiB/s) with 1 file(s) remaining
Completed 99.2 MiB/660.5 MiB (29.8 MiB/s) with 1 file(s) remaining
Completed 99.5 MiB/660.5 MiB (29.8 MiB/s) with 1 file(s) remaining
Completed 99.8 MiB/660.5 MiB (29.8 MiB/s) with 1 file(s) remaining
Completed 100.0 MiB/660.5 MiB (29.7 MiB/s) with 1 file(s) remaining
Completed 100.2 MiB/660.5 MiB (29.7 MiB/s) with 1 file(s) remaining
Completed 100.5 MiB/660.5 MiB (29.8 MiB/s) with 1 file(s) remaining
Completed 100.8 MiB/660.5 MiB (29.7 MiB/s) with 1 file(s) remaining
Completed 101.0 MiB/660.5 MiB (29.7 MiB/s) with 1 file(s) remaining
Completed 101.2 MiB/660.5 MiB (29.8 MiB/s) with 1 file(s) remaining
Completed 101.5 MiB/660.5 MiB (29.6 MiB/s) with 1 file(s) remaining
Completed 101.8 MiB/660.5 MiB (29.6 MiB/s) with 1 file(s) remaining
Completed 102.0 MiB/660.5 MiB (29.6 MiB/s) with 1 file(s) remaining
Completed 102.2 MiB/660.5 MiB (29.6 MiB/s) with 1 file(s) remaining
Completed 102.5 MiB/660.5 MiB (29.5 MiB/s) with 1 file(s) remaining
Completed 102.8 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 103.0 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 103.2 MiB/660.5 MiB (29.5 MiB/s) with 1 file(s) remaining
Completed 103.5 MiB/660.5 MiB (29.5 MiB/s) with 1 file(s) remaining
Completed 103.8 MiB/660.5 MiB (29.6 MiB/s) with 1 file(s) remaining
Completed 104.0 MiB/660.5 MiB (29.6 MiB/s) with 1 file(s) remaining
Completed 104.2 MiB/660.5 MiB (29.7 MiB/s) with 1 file(s) remaining
Completed 104.5 MiB/660.5 MiB (29.7 MiB/s) with 1 file(s) remaining
Completed 104.8 MiB/660.5 MiB (29.7 MiB/s) with 1 file(s) remaining
Completed 105.0 MiB/660.5 MiB (29.5 MiB/s) with 1 file(s) remaining
Completed 105.2 MiB/660.5 MiB (29.5 MiB/s) with 1 file(s) remaining
Completed 105.5 MiB/660.5 MiB (29.5 MiB/s) with 1 file(s) remaining
Completed 105.8 MiB/660.5 MiB (29.6 MiB/s) with 1 file(s) remaining
Completed 106.0 MiB/660.5 MiB (29.6 MiB/s) with 1 file(s) remaining
Completed 106.2 MiB/660.5 MiB (29.6 MiB/s) with 1 file(s) remaining
Completed 106.5 MiB/660.5 MiB (29.6 MiB/s) with 1 file(s) remaining
Completed 106.8 MiB/660.5 MiB (29.5 MiB/s) with 1 file(s) remaining
Completed 107.0 MiB/660.5 MiB (29.5 MiB/s) with 1 file(s) remaining
Completed 107.2 MiB/660.5 MiB (29.5 MiB/s) with 1 file(s) remaining
Completed 107.5 MiB/660.5 MiB (29.5 MiB/s) with 1 file(s) remaining
Completed 107.8 MiB/660.5 MiB (29.6 MiB/s) with 1 file(s) remaining
Completed 108.0 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 108.2 MiB/660.5 MiB (29.5 MiB/s) with 1 file(s) remaining
Completed 108.5 MiB/660.5 MiB (29.5 MiB/s) with 1 file(s) remaining
Completed 108.8 MiB/660.5 MiB (29.5 MiB/s) with 1 file(s) remaining
Completed 109.0 MiB/660.5 MiB (29.5 MiB/s) with 1 file(s) remaining
Completed 109.2 MiB/660.5 MiB (29.6 MiB/s) with 1 file(s) remaining
Completed 109.5 MiB/660.5 MiB (29.6 MiB/s) with 1 file(s) remaining
Completed 109.8 MiB/660.5 MiB (29.6 MiB/s) with 1 file(s) remaining
Completed 110.0 MiB/660.5 MiB (29.5 MiB/s) with 1 file(s) remaining
Completed 110.2 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 110.5 MiB/660.5 MiB (29.5 MiB/s) with 1 file(s) remaining
Completed 110.8 MiB/660.5 MiB (29.5 MiB/s) with 1 file(s) remaining
Completed 111.0 MiB/660.5 MiB (29.5 MiB/s) with 1 file(s) remaining
Completed 111.2 MiB/660.5 MiB (29.5 MiB/s) with 1 file(s) remaining
Completed 111.5 MiB/660.5 MiB (29.5 MiB/s) with 1 file(s) remaining
Completed 111.8 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 112.0 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 112.2 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 112.5 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 112.8 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 113.0 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 113.2 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 113.5 MiB/660.5 MiB (29.5 MiB/s) with 1 file(s) remaining
Completed 113.8 MiB/660.5 MiB (29.5 MiB/s) with 1 file(s) remaining
Completed 114.0 MiB/660.5 MiB (29.5 MiB/s) with 1 file(s) remaining
Completed 114.2 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 114.5 MiB/660.5 MiB (29.5 MiB/s) with 1 file(s) remaining
Completed 114.8 MiB/660.5 MiB (29.5 MiB/s) with 1 file(s) remaining
Completed 115.0 MiB/660.5 MiB (29.5 MiB/s) with 1 file(s) remaining
Completed 115.2 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 115.5 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 115.8 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 116.0 MiB/660.5 MiB (29.5 MiB/s) with 1 file(s) remaining
Completed 116.2 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 116.5 MiB/660.5 MiB (29.5 MiB/s) with 1 file(s) remaining
Completed 116.8 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 117.0 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 117.2 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 117.5 MiB/660.5 MiB (29.5 MiB/s) with 1 file(s) remaining
Completed 117.8 MiB/660.5 MiB (29.5 MiB/s) with 1 file(s) remaining
Completed 118.0 MiB/660.5 MiB (29.5 MiB/s) with 1 file(s) remaining
Completed 118.2 MiB/660.5 MiB (29.5 MiB/s) with 1 file(s) remaining
Completed 118.5 MiB/660.5 MiB (29.5 MiB/s) with 1 file(s) remaining
Completed 118.8 MiB/660.5 MiB (29.5 MiB/s) with 1 file(s) remaining
Completed 119.0 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 119.2 MiB/660.5 MiB (29.5 MiB/s) with 1 file(s) remaining
Completed 119.5 MiB/660.5 MiB (29.5 MiB/s) with 1 file(s) remaining
Completed 119.8 MiB/660.5 MiB (29.5 MiB/s) with 1 file(s) remaining
Completed 120.0 MiB/660.5 MiB (29.5 MiB/s) with 1 file(s) remaining
Completed 120.2 MiB/660.5 MiB (29.5 MiB/s) with 1 file(s) remaining
Completed 120.5 MiB/660.5 MiB (29.5 MiB/s) with 1 file(s) remaining
Completed 120.8 MiB/660.5 MiB (29.5 MiB/s) with 1 file(s) remaining
Completed 121.0 MiB/660.5 MiB (29.5 MiB/s) with 1 file(s) remaining
Completed 121.2 MiB/660.5 MiB (29.5 MiB/s) with 1 file(s) remaining
Completed 121.5 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 121.8 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 122.0 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 122.2 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 122.5 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 122.8 MiB/660.5 MiB (29.5 MiB/s) with 1 file(s) remaining
Completed 123.0 MiB/660.5 MiB (29.6 MiB/s) with 1 file(s) remaining
Completed 123.2 MiB/660.5 MiB (29.6 MiB/s) with 1 file(s) remaining
Completed 123.5 MiB/660.5 MiB (29.5 MiB/s) with 1 file(s) remaining
Completed 123.8 MiB/660.5 MiB (29.5 MiB/s) with 1 file(s) remaining
Completed 124.0 MiB/660.5 MiB (29.5 MiB/s) with 1 file(s) remaining
Completed 124.2 MiB/660.5 MiB (29.5 MiB/s) with 1 file(s) remaining
Completed 124.5 MiB/660.5 MiB (29.5 MiB/s) with 1 file(s) remaining
Completed 124.8 MiB/660.5 MiB (29.6 MiB/s) with 1 file(s) remaining
Completed 125.0 MiB/660.5 MiB (29.6 MiB/s) with 1 file(s) remaining
Completed 125.2 MiB/660.5 MiB (29.7 MiB/s) with 1 file(s) remaining
Completed 125.5 MiB/660.5 MiB (29.6 MiB/s) with 1 file(s) remaining
Completed 125.8 MiB/660.5 MiB (29.5 MiB/s) with 1 file(s) remaining
Completed 126.0 MiB/660.5 MiB (29.5 MiB/s) with 1 file(s) remaining
Completed 126.2 MiB/660.5 MiB (29.5 MiB/s) with 1 file(s) remaining
Completed 126.5 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 126.8 MiB/660.5 MiB (29.5 MiB/s) with 1 file(s) remaining
Completed 127.0 MiB/660.5 MiB (29.5 MiB/s) with 1 file(s) remaining
Completed 127.2 MiB/660.5 MiB (29.6 MiB/s) with 1 file(s) remaining
Completed 127.5 MiB/660.5 MiB (29.5 MiB/s) with 1 file(s) remaining
Completed 127.8 MiB/660.5 MiB (29.5 MiB/s) with 1 file(s) remaining
Completed 128.0 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 128.2 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 128.5 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 128.8 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 129.0 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 129.2 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 129.5 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 129.8 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 130.0 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 130.2 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 130.5 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 130.8 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 131.0 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 131.2 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 131.5 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 131.8 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 132.0 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 132.2 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 132.5 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 132.8 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 133.0 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 133.2 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 133.5 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 133.8 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 134.0 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 134.2 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 134.5 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 134.8 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 135.0 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 135.2 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 135.5 MiB/660.5 MiB (29.5 MiB/s) with 1 file(s) remaining
Completed 135.8 MiB/660.5 MiB (29.5 MiB/s) with 1 file(s) remaining
Completed 136.0 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 136.2 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 136.5 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 136.8 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 137.0 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 137.2 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 137.5 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 137.8 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 138.0 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 138.2 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 138.5 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 138.8 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 139.0 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 139.2 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 139.5 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 139.8 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 140.0 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 140.2 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 140.5 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 140.8 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 141.0 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 141.2 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 141.5 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 141.8 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 142.0 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 142.2 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 142.5 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 142.8 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 143.0 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 143.2 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 143.5 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 143.8 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 144.0 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 144.2 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 144.5 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 144.8 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 145.0 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 145.2 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 145.5 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 145.8 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 146.0 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 146.2 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 146.5 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 146.8 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 147.0 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 147.2 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 147.5 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 147.8 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 148.0 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 148.2 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 148.5 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 148.8 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 149.0 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 149.2 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 149.5 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 149.8 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 150.0 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 150.2 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 150.5 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 150.8 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 151.0 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 151.2 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 151.5 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 151.8 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 152.0 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 152.2 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 152.5 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 152.8 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 153.0 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 153.2 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 153.5 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 153.8 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 154.0 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 154.2 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 154.5 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 154.8 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 155.0 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 155.2 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 155.5 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 155.8 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 156.0 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 156.2 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 156.5 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 156.8 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 157.0 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 157.2 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 157.5 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 157.8 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 158.0 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 158.2 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 158.5 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 158.8 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 159.0 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 159.2 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 159.5 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 159.8 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 160.0 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 160.2 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 160.5 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 160.8 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 161.0 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 161.2 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 161.5 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 161.8 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 162.0 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 162.2 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 162.5 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 162.8 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 163.0 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 163.2 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 163.5 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 163.8 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 164.0 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 164.2 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 164.5 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 164.8 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 165.0 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 165.2 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 165.5 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 165.8 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 166.0 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 166.2 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 166.5 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 166.8 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 167.0 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 167.2 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 167.5 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 167.8 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 168.0 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 168.2 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 168.5 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 168.8 MiB/660.5 MiB (29.5 MiB/s) with 1 file(s) remaining
Completed 169.0 MiB/660.5 MiB (29.5 MiB/s) with 1 file(s) remaining
Completed 169.2 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 169.5 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 169.8 MiB/660.5 MiB (29.5 MiB/s) with 1 file(s) remaining
Completed 170.0 MiB/660.5 MiB (29.5 MiB/s) with 1 file(s) remaining
Completed 170.2 MiB/660.5 MiB (29.5 MiB/s) with 1 file(s) remaining
Completed 170.5 MiB/660.5 MiB (29.5 MiB/s) with 1 file(s) remaining
Completed 170.8 MiB/660.5 MiB (29.5 MiB/s) with 1 file(s) remaining
Completed 171.0 MiB/660.5 MiB (29.5 MiB/s) with 1 file(s) remaining
Completed 171.2 MiB/660.5 MiB (29.5 MiB/s) with 1 file(s) remaining
Completed 171.5 MiB/660.5 MiB (29.5 MiB/s) with 1 file(s) remaining
Completed 171.8 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 172.0 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 172.2 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 172.5 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 172.8 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 173.0 MiB/660.5 MiB (29.5 MiB/s) with 1 file(s) remaining
Completed 173.2 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 173.5 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 173.8 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 174.0 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 174.2 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 174.5 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 174.8 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 175.0 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 175.2 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 175.5 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 175.8 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 176.0 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 176.2 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 176.5 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 176.8 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 177.0 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 177.2 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 177.5 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 177.8 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 178.0 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 178.2 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 178.5 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 178.8 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 179.0 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 179.2 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 179.5 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 179.8 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 180.0 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 180.2 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 180.5 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 180.8 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 181.0 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 181.2 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 181.5 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 181.8 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 182.0 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 182.2 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 182.5 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 182.8 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 183.0 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 183.2 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 183.5 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 183.8 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 184.0 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 184.2 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 184.5 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 184.8 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 185.0 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 185.2 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 185.5 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 185.8 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 186.0 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 186.2 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 186.5 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 186.8 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 187.0 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 187.2 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 187.5 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 187.8 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 188.0 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 188.2 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 188.5 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 188.8 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 189.0 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 189.2 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 189.5 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 189.8 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 190.0 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 190.2 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 190.5 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 190.8 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 191.0 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 191.2 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 191.5 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 191.8 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 192.0 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 192.2 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 192.5 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 192.8 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 193.0 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 193.2 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 193.5 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 193.8 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 194.0 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 194.2 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 194.5 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 194.8 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 195.0 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 195.2 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 195.5 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 195.8 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 196.0 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 196.2 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 196.5 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 196.8 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 197.0 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 197.2 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 197.5 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 197.8 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 198.0 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 198.2 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 198.5 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 198.8 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 199.0 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 199.2 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 199.5 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 199.8 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 200.0 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 200.2 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 200.5 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 200.8 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 201.0 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 201.2 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 201.5 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 201.8 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 202.0 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 202.2 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 202.5 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 202.8 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 203.0 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 203.2 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 203.5 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 203.8 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 204.0 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 204.2 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 204.5 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 204.8 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 205.0 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 205.2 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 205.5 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 205.8 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 206.0 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 206.2 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 206.5 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 206.8 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 207.0 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 207.2 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 207.5 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 207.8 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 208.0 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 208.2 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 208.5 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 208.8 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 209.0 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 209.2 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 209.5 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 209.8 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 210.0 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 210.2 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 210.5 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 210.8 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 211.0 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 211.2 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 211.5 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 211.8 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 212.0 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 212.2 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 212.5 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 212.8 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 213.0 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 213.2 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 213.5 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 213.8 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 214.0 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 214.2 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 214.5 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 214.8 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 215.0 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 215.2 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 215.5 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 215.8 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 216.0 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 216.2 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 216.5 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 216.8 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 217.0 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 217.2 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 217.5 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 217.8 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 218.0 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 218.2 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 218.5 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 218.8 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 219.0 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 219.2 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 219.5 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 219.8 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 220.0 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 220.2 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 220.5 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 220.8 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 221.0 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 221.2 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 221.5 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 221.8 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 222.0 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 222.2 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 222.5 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 222.8 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 223.0 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 223.2 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 223.5 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 223.8 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 224.0 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 224.2 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 224.5 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 224.8 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 225.0 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 225.2 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 225.5 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 225.8 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 226.0 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 226.2 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 226.5 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 226.8 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 227.0 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 227.2 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 227.5 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 227.8 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 228.0 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 228.2 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 228.5 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 228.8 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 229.0 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 229.2 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 229.5 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 229.8 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 230.0 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 230.2 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 230.5 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 230.8 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 231.0 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 231.2 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 231.5 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 231.8 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 232.0 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 232.2 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 232.5 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 232.8 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 233.0 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 233.2 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 233.5 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 233.8 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 234.0 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 234.2 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 234.5 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 234.8 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 235.0 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 235.2 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 235.5 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 235.8 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 236.0 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 236.2 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 236.5 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 236.8 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 237.0 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 237.2 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 237.5 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 237.8 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 238.0 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 238.2 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 238.5 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 238.8 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 239.0 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 239.2 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 239.5 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 239.8 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 240.0 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 240.2 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 240.5 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 240.8 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 241.0 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 241.2 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 241.5 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 241.8 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 242.0 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 242.2 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 242.5 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 242.8 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 243.0 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 243.2 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 243.5 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 243.8 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 244.0 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 244.2 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 244.5 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 244.8 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 245.0 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 245.2 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 245.5 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 245.8 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 246.0 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 246.2 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 246.5 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 246.8 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 247.0 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 247.2 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 247.5 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 247.8 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 248.0 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 248.2 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 248.5 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 248.8 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 249.0 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 249.2 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 249.5 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 249.8 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 250.0 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 250.2 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 250.5 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 250.8 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 251.0 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 251.2 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 251.5 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 251.8 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 252.0 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 252.2 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 252.5 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 252.8 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 253.0 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 253.2 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 253.5 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 253.8 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 254.0 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 254.2 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 254.5 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 254.8 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 255.0 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 255.2 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 255.5 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 255.8 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 256.0 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 256.2 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 256.5 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 256.8 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 257.0 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 257.2 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 257.5 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 257.8 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 258.0 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 258.2 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 258.5 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 258.8 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 259.0 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 259.2 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 259.5 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 259.8 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 260.0 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 260.2 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 260.5 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 260.8 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 261.0 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 261.2 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 261.5 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 261.8 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 262.0 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 262.2 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 262.5 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 262.8 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 263.0 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 263.2 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 263.5 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 263.8 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 264.0 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 264.2 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 264.5 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 264.8 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 265.0 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 265.2 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 265.5 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 265.8 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 266.0 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 266.2 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 266.5 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 266.8 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 267.0 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 267.2 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 267.5 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 267.8 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 268.0 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 268.2 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 268.5 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 268.8 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 269.0 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 269.2 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 269.5 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 269.8 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 270.0 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 270.2 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 270.5 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 270.8 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 271.0 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 271.2 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 271.5 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 271.8 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 272.0 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 272.2 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 272.5 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 272.8 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 273.0 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 273.2 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 273.5 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 273.8 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 274.0 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 274.2 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 274.5 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 274.8 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 275.0 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 275.2 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 275.5 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 275.8 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 276.0 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 276.2 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 276.5 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 276.8 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 277.0 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 277.2 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 277.5 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 277.8 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 278.0 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 278.2 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 278.5 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 278.8 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 279.0 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 279.2 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 279.5 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 279.8 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 280.0 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 280.2 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 280.5 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 280.8 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 281.0 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 281.2 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 281.5 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 281.8 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 282.0 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 282.2 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 282.5 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 282.8 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 283.0 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 283.2 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 283.5 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 283.8 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 284.0 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 284.2 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 284.5 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 284.8 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 285.0 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 285.2 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 285.5 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 285.8 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 286.0 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 286.2 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 286.5 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 286.8 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 287.0 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 287.2 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 287.5 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 287.8 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 288.0 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 288.2 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 288.5 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 288.8 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 289.0 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 289.2 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 289.5 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 289.8 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 290.0 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 290.2 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 290.5 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 290.8 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 291.0 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 291.2 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 291.5 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 291.8 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 292.0 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 292.2 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 292.5 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 292.8 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 293.0 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 293.2 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 293.5 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 293.8 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 294.0 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 294.2 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 294.5 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 294.8 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 295.0 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 295.2 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 295.5 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 295.8 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 296.0 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 296.2 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 296.5 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 296.8 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 297.0 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 297.2 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 297.5 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 297.8 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 298.0 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 298.2 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 298.5 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 298.8 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 299.0 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 299.2 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 299.5 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 299.8 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 300.0 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 300.2 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 300.5 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 300.8 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 301.0 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 301.2 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 301.5 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 301.8 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 302.0 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 302.2 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 302.5 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 302.8 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 303.0 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 303.2 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 303.5 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 303.8 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 304.0 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 304.2 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 304.5 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 304.8 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 305.0 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 305.2 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 305.5 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 305.8 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 306.0 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 306.2 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 306.5 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 306.8 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 307.0 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 307.2 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 307.5 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 307.8 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 308.0 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 308.2 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 308.5 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 308.8 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 309.0 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 309.2 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 309.5 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 309.8 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 310.0 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 310.2 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 310.5 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 310.8 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 311.0 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 311.2 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 311.5 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 311.8 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 312.0 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 312.2 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 312.5 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 312.8 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 313.0 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 313.2 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 313.5 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 313.8 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 314.0 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 314.2 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 314.5 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 314.8 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 315.0 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 315.2 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 315.5 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 315.8 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 316.0 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 316.2 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 316.5 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 316.8 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 317.0 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 317.2 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 317.5 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 317.8 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 318.0 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 318.2 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 318.5 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 318.8 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 319.0 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 319.2 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 319.5 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 319.8 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 320.0 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 320.2 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 320.5 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 320.8 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 321.0 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 321.2 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 321.5 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 321.8 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 322.0 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 322.2 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 322.5 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 322.8 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 323.0 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 323.2 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 323.5 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 323.8 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 324.0 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 324.2 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 324.5 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 324.8 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 325.0 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 325.2 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 325.5 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 325.8 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 326.0 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 326.2 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 326.5 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 326.8 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 327.0 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 327.2 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 327.5 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 327.8 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 328.0 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 328.2 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 328.5 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 328.8 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 329.0 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 329.2 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 329.5 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 329.8 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 330.0 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 330.2 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 330.5 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 330.8 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 331.0 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 331.2 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 331.5 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 331.8 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 332.0 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 332.2 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 332.5 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 332.8 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 333.0 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 333.2 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 333.5 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 333.8 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 334.0 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 334.2 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 334.5 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 334.8 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 335.0 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 335.2 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 335.5 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 335.8 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 336.0 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 336.2 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 336.5 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 336.8 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 337.0 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 337.2 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 337.5 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 337.8 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 338.0 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 338.2 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 338.5 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 338.8 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 339.0 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 339.2 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 339.5 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 339.8 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 340.0 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 340.2 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 340.5 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 340.8 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 341.0 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 341.2 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 341.5 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 341.8 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 342.0 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 342.2 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 342.5 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 342.8 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 343.0 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 343.2 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 343.5 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 343.8 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 344.0 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 344.2 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 344.5 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 344.8 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 345.0 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 345.2 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 345.5 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 345.8 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 346.0 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 346.2 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 346.5 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 346.8 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 347.0 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 347.2 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 347.5 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 347.8 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 348.0 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 348.2 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 348.5 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 348.8 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 349.0 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 349.2 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 349.5 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 349.8 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 350.0 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 350.2 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 350.5 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 350.8 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 351.0 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 351.2 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 351.5 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 351.8 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 352.0 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 352.2 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 352.5 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 352.8 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 353.0 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 353.2 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 353.5 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 353.8 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 354.0 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 354.2 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 354.5 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 354.8 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 355.0 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 355.2 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 355.5 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 355.8 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 356.0 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 356.2 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 356.5 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 356.8 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 357.0 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 357.2 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 357.5 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 357.8 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 358.0 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 358.2 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 358.5 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 358.8 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 359.0 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 359.2 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 359.5 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 359.8 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 360.0 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 360.2 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 360.5 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 360.8 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 361.0 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 361.2 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 361.5 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 361.8 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 362.0 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 362.2 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 362.5 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 362.8 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 363.0 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 363.2 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 363.5 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 363.8 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 364.0 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 364.2 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 364.5 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 364.8 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 365.0 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 365.2 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 365.5 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 365.8 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 366.0 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 366.2 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 366.5 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 366.8 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 367.0 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 367.2 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 367.5 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 367.8 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 368.0 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 368.2 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 368.5 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 368.8 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 369.0 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 369.2 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 369.5 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 369.8 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 370.0 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 370.2 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 370.5 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 370.8 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 371.0 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 371.2 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 371.5 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 371.8 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 372.0 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 372.2 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 372.5 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 372.8 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 373.0 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 373.2 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 373.5 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 373.8 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 374.0 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 374.2 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 374.5 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 374.8 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 375.0 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 375.2 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 375.5 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 375.8 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 376.0 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 376.2 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 376.5 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 376.8 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 377.0 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 377.2 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 377.5 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 377.8 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 378.0 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 378.2 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 378.5 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 378.8 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 379.0 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 379.2 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 379.5 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 379.8 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 380.0 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 380.2 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 380.5 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 380.8 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 381.0 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 381.2 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 381.5 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 381.8 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 382.0 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 382.2 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 382.5 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 382.8 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 383.0 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 383.2 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 383.5 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 383.8 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 384.0 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 384.2 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 384.5 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 384.8 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 385.0 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 385.2 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 385.5 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 385.8 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 386.0 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 386.2 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 386.5 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 386.8 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 387.0 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 387.2 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 387.5 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 387.8 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 388.0 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 388.2 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 388.5 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 388.8 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 389.0 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 389.2 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 389.5 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 389.8 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 390.0 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 390.2 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 390.5 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 390.8 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 391.0 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 391.2 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 391.5 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 391.8 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 392.0 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 392.2 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 392.5 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 392.8 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 393.0 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 393.2 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 393.5 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 393.8 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 394.0 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 394.2 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 394.5 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 394.8 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 395.0 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 395.2 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 395.5 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 395.8 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 396.0 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 396.2 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 396.5 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 396.8 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 397.0 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 397.2 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 397.5 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 397.8 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 398.0 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 398.2 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 398.5 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 398.8 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 399.0 MiB/660.5 MiB (29.4 MiB/s) with 1 file(s) remaining
Completed 399.2 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 399.5 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 399.8 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 400.0 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 400.2 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 400.5 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 400.8 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 401.0 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 401.2 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 401.5 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 401.8 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 402.0 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 402.2 MiB/660.5 MiB (29.3 MiB/s) with 1 file(s) remaining
Completed 402.5 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 402.8 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 403.0 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 403.2 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 403.5 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 403.8 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 404.0 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 404.2 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 404.5 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 404.8 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 405.0 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 405.2 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 405.5 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 405.8 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 406.0 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 406.2 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 406.5 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 406.8 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 407.0 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 407.2 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 407.5 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 407.8 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 408.0 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 408.2 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 408.5 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 408.8 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 409.0 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 409.2 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 409.5 MiB/660.5 MiB (29.2 MiB/s) with 1 file(s) remaining
Completed 409.8 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 410.0 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 410.2 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 410.5 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 410.8 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 411.0 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 411.2 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 411.5 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 411.8 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 412.0 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 412.2 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 412.5 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 412.8 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 413.0 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 413.2 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 413.5 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 413.8 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 414.0 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 414.2 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 414.5 MiB/660.5 MiB (29.1 MiB/s) with 1 file(s) remaining
Completed 414.8 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 415.0 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 415.2 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 415.5 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 415.8 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 416.0 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 416.2 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 416.5 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 416.8 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 417.0 MiB/660.5 MiB (29.0 MiB/s) with 1 file(s) remaining
Completed 417.2 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 417.5 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 417.8 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 418.0 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 418.2 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 418.5 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 418.8 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 419.0 MiB/660.5 MiB (28.9 MiB/s) with 1 file(s) remaining
Completed 419.2 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 419.5 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 419.8 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 420.0 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 420.2 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 420.5 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 420.8 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 421.0 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 421.2 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 421.5 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 421.8 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 422.0 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 422.2 MiB/660.5 MiB (28.8 MiB/s) with 1 file(s) remaining
Completed 422.5 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 422.8 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 423.0 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 423.2 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 423.5 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 423.8 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 424.0 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 424.2 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 424.5 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 424.8 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 425.0 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 425.2 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 425.5 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 425.8 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 426.0 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 426.2 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 426.5 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 426.8 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 427.0 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 427.2 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 427.5 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 427.8 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 428.0 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 428.2 MiB/660.5 MiB (28.7 MiB/s) with 1 file(s) remaining
Completed 428.5 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 428.8 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 429.0 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 429.2 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 429.5 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 429.8 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 430.0 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 430.2 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 430.5 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 430.8 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 431.0 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 431.2 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 431.5 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 431.8 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 432.0 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 432.2 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 432.5 MiB/660.5 MiB (28.6 MiB/s) with 1 file(s) remaining
Completed 432.8 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 433.0 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 433.2 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 433.5 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 433.8 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 434.0 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 434.2 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 434.5 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 434.8 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 435.0 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 435.2 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 435.5 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 435.8 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 436.0 MiB/660.5 MiB (28.4 MiB/s) with 1 file(s) remaining
Completed 436.2 MiB/660.5 MiB (28.4 MiB/s) with 1 file(s) remaining
Completed 436.5 MiB/660.5 MiB (28.4 MiB/s) with 1 file(s) remaining
Completed 436.8 MiB/660.5 MiB (28.4 MiB/s) with 1 file(s) remaining
Completed 437.0 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 437.2 MiB/660.5 MiB (28.4 MiB/s) with 1 file(s) remaining
Completed 437.5 MiB/660.5 MiB (28.4 MiB/s) with 1 file(s) remaining
Completed 437.8 MiB/660.5 MiB (28.4 MiB/s) with 1 file(s) remaining
Completed 438.0 MiB/660.5 MiB (28.4 MiB/s) with 1 file(s) remaining
Completed 438.2 MiB/660.5 MiB (28.4 MiB/s) with 1 file(s) remaining
Completed 438.5 MiB/660.5 MiB (28.4 MiB/s) with 1 file(s) remaining
Completed 438.8 MiB/660.5 MiB (28.4 MiB/s) with 1 file(s) remaining
Completed 439.0 MiB/660.5 MiB (28.4 MiB/s) with 1 file(s) remaining
Completed 439.2 MiB/660.5 MiB (28.4 MiB/s) with 1 file(s) remaining
Completed 439.5 MiB/660.5 MiB (28.4 MiB/s) with 1 file(s) remaining
Completed 439.8 MiB/660.5 MiB (28.4 MiB/s) with 1 file(s) remaining
Completed 440.0 MiB/660.5 MiB (28.4 MiB/s) with 1 file(s) remaining
Completed 440.2 MiB/660.5 MiB (28.4 MiB/s) with 1 file(s) remaining
Completed 440.5 MiB/660.5 MiB (28.4 MiB/s) with 1 file(s) remaining
Completed 440.8 MiB/660.5 MiB (28.4 MiB/s) with 1 file(s) remaining
Completed 441.0 MiB/660.5 MiB (28.4 MiB/s) with 1 file(s) remaining
Completed 441.2 MiB/660.5 MiB (28.4 MiB/s) with 1 file(s) remaining
Completed 441.5 MiB/660.5 MiB (28.4 MiB/s) with 1 file(s) remaining
Completed 441.8 MiB/660.5 MiB (28.4 MiB/s) with 1 file(s) remaining
Completed 442.0 MiB/660.5 MiB (28.4 MiB/s) with 1 file(s) remaining
Completed 442.2 MiB/660.5 MiB (28.4 MiB/s) with 1 file(s) remaining
Completed 442.5 MiB/660.5 MiB (28.4 MiB/s) with 1 file(s) remaining
Completed 442.8 MiB/660.5 MiB (28.4 MiB/s) with 1 file(s) remaining
Completed 443.0 MiB/660.5 MiB (28.4 MiB/s) with 1 file(s) remaining
Completed 443.2 MiB/660.5 MiB (28.4 MiB/s) with 1 file(s) remaining
Completed 443.5 MiB/660.5 MiB (28.4 MiB/s) with 1 file(s) remaining
Completed 443.8 MiB/660.5 MiB (28.4 MiB/s) with 1 file(s) remaining
Completed 444.0 MiB/660.5 MiB (28.4 MiB/s) with 1 file(s) remaining
Completed 444.2 MiB/660.5 MiB (28.4 MiB/s) with 1 file(s) remaining
Completed 444.5 MiB/660.5 MiB (28.4 MiB/s) with 1 file(s) remaining
Completed 444.8 MiB/660.5 MiB (28.4 MiB/s) with 1 file(s) remaining
Completed 445.0 MiB/660.5 MiB (28.4 MiB/s) with 1 file(s) remaining
Completed 445.2 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 445.5 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 445.8 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 446.0 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 446.2 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 446.5 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 446.8 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 447.0 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 447.2 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 447.5 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 447.8 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 448.0 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 448.2 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 448.5 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 448.8 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 449.0 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 449.2 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 449.5 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 449.8 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 450.0 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 450.2 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 450.5 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 450.8 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 451.0 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 451.2 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 451.5 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 451.8 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 452.0 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 452.2 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 452.5 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 452.8 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 453.0 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 453.2 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 453.5 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 453.8 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 454.0 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 454.2 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 454.5 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 454.8 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 455.0 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 455.2 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 455.5 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 455.8 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 456.0 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 456.2 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 456.5 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 456.8 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 457.0 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 457.2 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 457.5 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 457.8 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 458.0 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 458.2 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 458.5 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 458.8 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 459.0 MiB/660.5 MiB (28.5 MiB/s) with 1 file(s) remaining
Completed 459.2 MiB/660.5 MiB (28.4 MiB/s) with 1 file(s) remaining
Completed 459.5 MiB/660.5 MiB (28.4 MiB/s) with 1 file(s) remaining
Completed 459.8 MiB/660.5 MiB (28.4 MiB/s) with 1 file(s) remaining
Completed 460.0 MiB/660.5 MiB (28.4 MiB/s) with 1 file(s) remaining
Completed 460.2 MiB/660.5 MiB (28.4 MiB/s) with 1 file(s) remaining
Completed 460.5 MiB/660.5 MiB (28.4 MiB/s) with 1 file(s) remaining
Completed 460.8 MiB/660.5 MiB (28.4 MiB/s) with 1 file(s) remaining
Completed 461.0 MiB/660.5 MiB (28.4 MiB/s) with 1 file(s) remaining
Completed 461.2 MiB/660.5 MiB (28.4 MiB/s) with 1 file(s) remaining
Completed 461.5 MiB/660.5 MiB (28.4 MiB/s) with 1 file(s) remaining
Completed 461.8 MiB/660.5 MiB (28.4 MiB/s) with 1 file(s) remaining
Completed 462.0 MiB/660.5 MiB (28.4 MiB/s) with 1 file(s) remaining
Completed 462.2 MiB/660.5 MiB (28.4 MiB/s) with 1 file(s) remaining
Completed 462.5 MiB/660.5 MiB (28.4 MiB/s) with 1 file(s) remaining
Completed 462.8 MiB/660.5 MiB (28.4 MiB/s) with 1 file(s) remaining
Completed 463.0 MiB/660.5 MiB (28.4 MiB/s) with 1 file(s) remaining
Completed 463.2 MiB/660.5 MiB (28.4 MiB/s) with 1 file(s) remaining
Completed 463.5 MiB/660.5 MiB (28.4 MiB/s) with 1 file(s) remaining
Completed 463.8 MiB/660.5 MiB (28.4 MiB/s) with 1 file(s) remaining
Completed 464.0 MiB/660.5 MiB (28.4 MiB/s) with 1 file(s) remaining
Completed 464.2 MiB/660.5 MiB (28.4 MiB/s) with 1 file(s) remaining
Completed 464.5 MiB/660.5 MiB (28.4 MiB/s) with 1 file(s) remaining
Completed 464.8 MiB/660.5 MiB (28.4 MiB/s) with 1 file(s) remaining
Completed 465.0 MiB/660.5 MiB (28.4 MiB/s) with 1 file(s) remaining
Completed 465.2 MiB/660.5 MiB (28.4 MiB/s) with 1 file(s) remaining
Completed 465.5 MiB/660.5 MiB (28.4 MiB/s) with 1 file(s) remaining
Completed 465.8 MiB/660.5 MiB (28.4 MiB/s) with 1 file(s) remaining
Completed 466.0 MiB/660.5 MiB (28.4 MiB/s) with 1 file(s) remaining
Completed 466.2 MiB/660.5 MiB (28.4 MiB/s) with 1 file(s) remaining
Completed 466.5 MiB/660.5 MiB (28.4 MiB/s) with 1 file(s) remaining
Completed 466.8 MiB/660.5 MiB (28.4 MiB/s) with 1 file(s) remaining
Completed 467.0 MiB/660.5 MiB (28.4 MiB/s) with 1 file(s) remaining
Completed 467.2 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 467.5 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 467.8 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 468.0 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 468.2 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 468.5 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 468.8 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 469.0 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 469.2 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 469.5 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 469.8 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 470.0 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 470.2 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 470.5 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 470.8 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 471.0 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 471.2 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 471.5 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 471.8 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 472.0 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 472.2 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 472.5 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 472.8 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 473.0 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 473.2 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 473.5 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 473.8 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 474.0 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 474.2 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 474.5 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 474.8 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 475.0 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 475.2 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 475.5 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 475.8 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 476.0 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 476.2 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 476.5 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 476.8 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 477.0 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 477.2 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 477.5 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 477.8 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 478.0 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 478.2 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 478.5 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 478.8 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 479.0 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 479.2 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 479.5 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 479.8 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 480.0 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 480.2 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 480.5 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 480.8 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 481.0 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 481.2 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 481.5 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 481.8 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 482.0 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 482.2 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 482.5 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 482.8 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 483.0 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 483.2 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 483.5 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 483.8 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 484.0 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 484.2 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 484.5 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 484.8 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 485.0 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 485.2 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 485.5 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 485.8 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 486.0 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 486.2 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 486.5 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 486.8 MiB/660.5 MiB (28.3 MiB/s) with 1 file(s) remaining
Completed 487.0 MiB/660.5 MiB (28.2 MiB/s) with 1 file(s) remaining
Completed 487.2 MiB/660.5 MiB (28.2 MiB/s) with 1 file(s) remaining
Completed 487.5 MiB/660.5 MiB (28.2 MiB/s) with 1 file(s) remaining
Completed 487.8 MiB/660.5 MiB (28.2 MiB/s) with 1 file(s) remaining
Completed 488.0 MiB/660.5 MiB (28.2 MiB/s) with 1 file(s) remaining
Completed 488.2 MiB/660.5 MiB (28.2 MiB/s) with 1 file(s) remaining
Completed 488.5 MiB/660.5 MiB (28.2 MiB/s) with 1 file(s) remaining
Completed 488.8 MiB/660.5 MiB (28.2 MiB/s) with 1 file(s) remaining
Completed 489.0 MiB/660.5 MiB (28.2 MiB/s) with 1 file(s) remaining
Completed 489.2 MiB/660.5 MiB (28.2 MiB/s) with 1 file(s) remaining
Completed 489.5 MiB/660.5 MiB (28.2 MiB/s) with 1 file(s) remaining
Completed 489.8 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 490.0 MiB/660.5 MiB (28.2 MiB/s) with 1 file(s) remaining
Completed 490.2 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 490.5 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 490.8 MiB/660.5 MiB (28.2 MiB/s) with 1 file(s) remaining
Completed 491.0 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 491.2 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 491.5 MiB/660.5 MiB (28.2 MiB/s) with 1 file(s) remaining
Completed 491.8 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 492.0 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 492.2 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 492.5 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 492.8 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 493.0 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 493.2 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 493.5 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 493.8 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 494.0 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 494.2 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 494.5 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 494.8 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 495.0 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 495.2 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 495.5 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 495.8 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 496.0 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 496.2 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 496.5 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 496.8 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 497.0 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 497.2 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 497.5 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 497.8 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 498.0 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 498.2 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 498.5 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 498.8 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 499.0 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 499.2 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 499.5 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 499.8 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 500.0 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 500.2 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 500.5 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 500.8 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 501.0 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 501.2 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 501.5 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 501.8 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 502.0 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 502.2 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 502.5 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 502.8 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 503.0 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 503.2 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 503.5 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 503.8 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 504.0 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 504.2 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 504.5 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 504.8 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 505.0 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 505.2 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 505.5 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 505.8 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 506.0 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 506.2 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 506.5 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 506.8 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 507.0 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 507.2 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 507.5 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 507.8 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 508.0 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 508.2 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 508.5 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 508.8 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 509.0 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 509.2 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 509.5 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 509.8 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 510.0 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 510.2 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 510.5 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 510.8 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 511.0 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 511.2 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 511.5 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 511.8 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 512.0 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 512.2 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 512.5 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 512.8 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 513.0 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 513.2 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 513.5 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 513.8 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 514.0 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 514.2 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 514.5 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 514.8 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 515.0 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 515.2 MiB/660.5 MiB (28.2 MiB/s) with 1 file(s) remaining
Completed 515.5 MiB/660.5 MiB (28.2 MiB/s) with 1 file(s) remaining
Completed 515.8 MiB/660.5 MiB (28.2 MiB/s) with 1 file(s) remaining
Completed 516.0 MiB/660.5 MiB (28.2 MiB/s) with 1 file(s) remaining
Completed 516.2 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 516.5 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 516.8 MiB/660.5 MiB (28.2 MiB/s) with 1 file(s) remaining
Completed 517.0 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 517.2 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 517.5 MiB/660.5 MiB (28.2 MiB/s) with 1 file(s) remaining
Completed 517.8 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 518.0 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 518.2 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 518.5 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 518.8 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 519.0 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 519.2 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 519.5 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 519.8 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 520.0 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 520.2 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 520.5 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 520.8 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 521.0 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 521.2 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 521.5 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 521.8 MiB/660.5 MiB (28.2 MiB/s) with 1 file(s) remaining
Completed 522.0 MiB/660.5 MiB (28.2 MiB/s) with 1 file(s) remaining
Completed 522.2 MiB/660.5 MiB (28.2 MiB/s) with 1 file(s) remaining
Completed 522.5 MiB/660.5 MiB (28.2 MiB/s) with 1 file(s) remaining
Completed 522.8 MiB/660.5 MiB (28.2 MiB/s) with 1 file(s) remaining
Completed 523.0 MiB/660.5 MiB (28.2 MiB/s) with 1 file(s) remaining
Completed 523.2 MiB/660.5 MiB (28.2 MiB/s) with 1 file(s) remaining
Completed 523.5 MiB/660.5 MiB (28.2 MiB/s) with 1 file(s) remaining
Completed 523.8 MiB/660.5 MiB (28.2 MiB/s) with 1 file(s) remaining
Completed 524.0 MiB/660.5 MiB (28.2 MiB/s) with 1 file(s) remaining
Completed 524.2 MiB/660.5 MiB (28.2 MiB/s) with 1 file(s) remaining
Completed 524.5 MiB/660.5 MiB (28.2 MiB/s) with 1 file(s) remaining
Completed 524.8 MiB/660.5 MiB (28.2 MiB/s) with 1 file(s) remaining
Completed 525.0 MiB/660.5 MiB (28.2 MiB/s) with 1 file(s) remaining
Completed 525.2 MiB/660.5 MiB (28.2 MiB/s) with 1 file(s) remaining
Completed 525.5 MiB/660.5 MiB (28.2 MiB/s) with 1 file(s) remaining
Completed 525.8 MiB/660.5 MiB (28.2 MiB/s) with 1 file(s) remaining
Completed 526.0 MiB/660.5 MiB (28.2 MiB/s) with 1 file(s) remaining
Completed 526.2 MiB/660.5 MiB (28.2 MiB/s) with 1 file(s) remaining
Completed 526.5 MiB/660.5 MiB (28.2 MiB/s) with 1 file(s) remaining
Completed 526.8 MiB/660.5 MiB (28.2 MiB/s) with 1 file(s) remaining
Completed 527.0 MiB/660.5 MiB (28.2 MiB/s) with 1 file(s) remaining
Completed 527.2 MiB/660.5 MiB (28.2 MiB/s) with 1 file(s) remaining
Completed 527.5 MiB/660.5 MiB (28.2 MiB/s) with 1 file(s) remaining
Completed 527.8 MiB/660.5 MiB (28.2 MiB/s) with 1 file(s) remaining
Completed 528.0 MiB/660.5 MiB (28.2 MiB/s) with 1 file(s) remaining
Completed 528.2 MiB/660.5 MiB (28.2 MiB/s) with 1 file(s) remaining
Completed 528.5 MiB/660.5 MiB (28.2 MiB/s) with 1 file(s) remaining
Completed 528.8 MiB/660.5 MiB (28.2 MiB/s) with 1 file(s) remaining
Completed 529.0 MiB/660.5 MiB (28.2 MiB/s) with 1 file(s) remaining
Completed 529.2 MiB/660.5 MiB (28.2 MiB/s) with 1 file(s) remaining
Completed 529.5 MiB/660.5 MiB (28.2 MiB/s) with 1 file(s) remaining
Completed 529.8 MiB/660.5 MiB (28.2 MiB/s) with 1 file(s) remaining
Completed 530.0 MiB/660.5 MiB (28.2 MiB/s) with 1 file(s) remaining
Completed 530.2 MiB/660.5 MiB (28.2 MiB/s) with 1 file(s) remaining
Completed 530.5 MiB/660.5 MiB (28.2 MiB/s) with 1 file(s) remaining
Completed 530.8 MiB/660.5 MiB (28.2 MiB/s) with 1 file(s) remaining
Completed 531.0 MiB/660.5 MiB (28.2 MiB/s) with 1 file(s) remaining
Completed 531.2 MiB/660.5 MiB (28.2 MiB/s) with 1 file(s) remaining
Completed 531.5 MiB/660.5 MiB (28.2 MiB/s) with 1 file(s) remaining
Completed 531.8 MiB/660.5 MiB (28.2 MiB/s) with 1 file(s) remaining
Completed 532.0 MiB/660.5 MiB (28.2 MiB/s) with 1 file(s) remaining
Completed 532.2 MiB/660.5 MiB (28.2 MiB/s) with 1 file(s) remaining
Completed 532.5 MiB/660.5 MiB (28.2 MiB/s) with 1 file(s) remaining
Completed 532.8 MiB/660.5 MiB (28.2 MiB/s) with 1 file(s) remaining
Completed 533.0 MiB/660.5 MiB (28.2 MiB/s) with 1 file(s) remaining
Completed 533.2 MiB/660.5 MiB (28.2 MiB/s) with 1 file(s) remaining
Completed 533.5 MiB/660.5 MiB (28.2 MiB/s) with 1 file(s) remaining
Completed 533.8 MiB/660.5 MiB (28.2 MiB/s) with 1 file(s) remaining
Completed 534.0 MiB/660.5 MiB (28.2 MiB/s) with 1 file(s) remaining
Completed 534.2 MiB/660.5 MiB (28.2 MiB/s) with 1 file(s) remaining
Completed 534.5 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 534.8 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 535.0 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 535.2 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 535.5 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 535.8 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 536.0 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 536.2 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 536.5 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 536.8 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 537.0 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 537.2 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 537.5 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 537.8 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 538.0 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 538.2 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 538.5 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 538.8 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 539.0 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 539.2 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 539.5 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 539.8 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 540.0 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 540.2 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 540.5 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 540.8 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 541.0 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 541.2 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 541.5 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 541.8 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 542.0 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 542.2 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 542.5 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 542.8 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 543.0 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 543.2 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 543.5 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 543.8 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 544.0 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 544.2 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 544.5 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 544.8 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 545.0 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 545.2 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 545.5 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 545.8 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 546.0 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 546.2 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 546.5 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 546.8 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 547.0 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 547.2 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 547.5 MiB/660.5 MiB (27.9 MiB/s) with 1 file(s) remaining
Completed 547.8 MiB/660.5 MiB (27.9 MiB/s) with 1 file(s) remaining
Completed 548.0 MiB/660.5 MiB (27.9 MiB/s) with 1 file(s) remaining
Completed 548.2 MiB/660.5 MiB (27.9 MiB/s) with 1 file(s) remaining
Completed 548.5 MiB/660.5 MiB (27.9 MiB/s) with 1 file(s) remaining
Completed 548.8 MiB/660.5 MiB (27.9 MiB/s) with 1 file(s) remaining
Completed 549.0 MiB/660.5 MiB (27.9 MiB/s) with 1 file(s) remaining
Completed 549.2 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 549.5 MiB/660.5 MiB (27.9 MiB/s) with 1 file(s) remaining
Completed 549.8 MiB/660.5 MiB (27.9 MiB/s) with 1 file(s) remaining
Completed 550.0 MiB/660.5 MiB (27.9 MiB/s) with 1 file(s) remaining
Completed 550.2 MiB/660.5 MiB (27.9 MiB/s) with 1 file(s) remaining
Completed 550.5 MiB/660.5 MiB (27.9 MiB/s) with 1 file(s) remaining
Completed 550.8 MiB/660.5 MiB (27.9 MiB/s) with 1 file(s) remaining
Completed 551.0 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 551.2 MiB/660.5 MiB (27.9 MiB/s) with 1 file(s) remaining
Completed 551.5 MiB/660.5 MiB (27.9 MiB/s) with 1 file(s) remaining
Completed 551.8 MiB/660.5 MiB (27.9 MiB/s) with 1 file(s) remaining
Completed 552.0 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 552.2 MiB/660.5 MiB (27.9 MiB/s) with 1 file(s) remaining
Completed 552.5 MiB/660.5 MiB (27.9 MiB/s) with 1 file(s) remaining
Completed 552.8 MiB/660.5 MiB (27.9 MiB/s) with 1 file(s) remaining
Completed 553.0 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 553.2 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 553.5 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 553.8 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 554.0 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 554.2 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 554.5 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 554.8 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 555.0 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 555.2 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 555.5 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 555.8 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 556.0 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 556.2 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 556.5 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 556.8 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 557.0 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 557.2 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 557.5 MiB/660.5 MiB (27.9 MiB/s) with 1 file(s) remaining
Completed 557.8 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 558.0 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 558.2 MiB/660.5 MiB (27.9 MiB/s) with 1 file(s) remaining
Completed 558.5 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 558.8 MiB/660.5 MiB (27.9 MiB/s) with 1 file(s) remaining
Completed 559.0 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 559.2 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 559.5 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 559.8 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 560.0 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 560.2 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 560.5 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 560.8 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 561.0 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 561.2 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 561.5 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 561.8 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 562.0 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 562.2 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 562.5 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 562.8 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 563.0 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 563.2 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 563.5 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 563.8 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 564.0 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 564.2 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 564.5 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 564.8 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 565.0 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 565.2 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 565.5 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 565.8 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 566.0 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 566.2 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 566.5 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 566.8 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 567.0 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 567.2 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 567.5 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 567.8 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 568.0 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 568.2 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 568.5 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 568.8 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 569.0 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 569.2 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 569.5 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 569.8 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 570.0 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 570.2 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 570.5 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 570.8 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 571.0 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 571.2 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 571.5 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 571.8 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 572.0 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 572.2 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 572.5 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 572.8 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 573.0 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 573.2 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 573.5 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 573.8 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 574.0 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 574.2 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 574.5 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 574.8 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 575.0 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 575.2 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 575.5 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 575.8 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 576.0 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 576.2 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 576.5 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 576.8 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 577.0 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 577.2 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 577.5 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 577.8 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 578.0 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 578.2 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 578.5 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 578.8 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 579.0 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 579.2 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 579.5 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 579.8 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 580.0 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 580.2 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 580.5 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 580.8 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 581.0 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 581.2 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 581.5 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 581.8 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 582.0 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 582.2 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 582.5 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 582.8 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 583.0 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 583.2 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 583.5 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 583.8 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 584.0 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 584.2 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 584.5 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 584.8 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 585.0 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 585.2 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 585.5 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 585.8 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 586.0 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 586.2 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 586.5 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 586.8 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 587.0 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 587.2 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 587.5 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 587.8 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 588.0 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 588.2 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 588.5 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 588.8 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 589.0 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 589.2 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 589.5 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 589.8 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 590.0 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 590.2 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 590.5 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 590.8 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 591.0 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 591.2 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 591.5 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 591.8 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 592.0 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 592.2 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 592.5 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 592.8 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 593.0 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 593.2 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 593.5 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 593.8 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 594.0 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 594.2 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 594.5 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 594.8 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 595.0 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 595.2 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 595.5 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 595.8 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 596.0 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 596.2 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 596.5 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 596.8 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 597.0 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 597.2 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 597.5 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 597.8 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 598.0 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 598.2 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 598.5 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 598.8 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 599.0 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 599.2 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 599.5 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 599.8 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 600.0 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 600.2 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 600.5 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 600.8 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 601.0 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 601.2 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 601.5 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 601.8 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 602.0 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 602.2 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 602.5 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 602.8 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 603.0 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 603.2 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 603.5 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 603.8 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 604.0 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 604.2 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 604.5 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 604.8 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 605.0 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 605.2 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 605.5 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 605.8 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 606.0 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 606.2 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 606.5 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 606.8 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 607.0 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 607.2 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 607.5 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 607.8 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 608.0 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 608.2 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 608.5 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 608.8 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 609.0 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 609.2 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 609.5 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 609.8 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 610.0 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 610.2 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 610.5 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 610.8 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 611.0 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 611.2 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 611.5 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 611.8 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 612.0 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 612.2 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 612.5 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 612.8 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 613.0 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 613.2 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 613.5 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 613.8 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 614.0 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 614.2 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 614.5 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 614.8 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 615.0 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 615.2 MiB/660.5 MiB (28.1 MiB/s) with 1 file(s) remaining
Completed 615.5 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 615.8 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 616.0 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 616.2 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 616.5 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 616.8 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 617.0 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 617.2 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 617.5 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 617.8 MiB/660.5 MiB (28.0 MiB/s) with 1 file(s) remaining
Completed 618.0 MiB/660.5 MiB (27.9 MiB/s) with 1 file(s) remaining
Completed 618.2 MiB/660.5 MiB (27.9 MiB/s) with 1 file(s) remaining
Completed 618.5 MiB/660.5 MiB (27.9 MiB/s) with 1 file(s) remaining
Completed 618.8 MiB/660.5 MiB (27.9 MiB/s) with 1 file(s) remaining
Completed 619.0 MiB/660.5 MiB (27.8 MiB/s) with 1 file(s) remaining
Completed 619.2 MiB/660.5 MiB (27.8 MiB/s) with 1 file(s) remaining
Completed 619.5 MiB/660.5 MiB (27.8 MiB/s) with 1 file(s) remaining
Completed 619.8 MiB/660.5 MiB (27.8 MiB/s) with 1 file(s) remaining
Completed 620.0 MiB/660.5 MiB (27.8 MiB/s) with 1 file(s) remaining
Completed 620.2 MiB/660.5 MiB (27.8 MiB/s) with 1 file(s) remaining
Completed 620.5 MiB/660.5 MiB (27.8 MiB/s) with 1 file(s) remaining
Completed 620.8 MiB/660.5 MiB (27.7 MiB/s) with 1 file(s) remaining
Completed 621.0 MiB/660.5 MiB (27.7 MiB/s) with 1 file(s) remaining
Completed 621.2 MiB/660.5 MiB (27.7 MiB/s) with 1 file(s) remaining
Completed 621.5 MiB/660.5 MiB (27.7 MiB/s) with 1 file(s) remaining
Completed 621.8 MiB/660.5 MiB (27.6 MiB/s) with 1 file(s) remaining
Completed 622.0 MiB/660.5 MiB (27.6 MiB/s) with 1 file(s) remaining
Completed 622.2 MiB/660.5 MiB (27.6 MiB/s) with 1 file(s) remaining
Completed 622.5 MiB/660.5 MiB (27.6 MiB/s) with 1 file(s) remaining
Completed 622.8 MiB/660.5 MiB (27.6 MiB/s) with 1 file(s) remaining
Completed 623.0 MiB/660.5 MiB (27.6 MiB/s) with 1 file(s) remaining
Completed 623.2 MiB/660.5 MiB (27.6 MiB/s) with 1 file(s) remaining
Completed 623.5 MiB/660.5 MiB (27.6 MiB/s) with 1 file(s) remaining
Completed 623.8 MiB/660.5 MiB (27.6 MiB/s) with 1 file(s) remaining
Completed 624.0 MiB/660.5 MiB (27.6 MiB/s) with 1 file(s) remaining
Completed 624.2 MiB/660.5 MiB (27.6 MiB/s) with 1 file(s) remaining
Completed 624.5 MiB/660.5 MiB (27.6 MiB/s) with 1 file(s) remaining
Completed 624.8 MiB/660.5 MiB (27.6 MiB/s) with 1 file(s) remaining
Completed 625.0 MiB/660.5 MiB (27.6 MiB/s) with 1 file(s) remaining
Completed 625.2 MiB/660.5 MiB (27.6 MiB/s) with 1 file(s) remaining
Completed 625.5 MiB/660.5 MiB (27.6 MiB/s) with 1 file(s) remaining
Completed 625.8 MiB/660.5 MiB (27.6 MiB/s) with 1 file(s) remaining
Completed 626.0 MiB/660.5 MiB (27.6 MiB/s) with 1 file(s) remaining
Completed 626.2 MiB/660.5 MiB (27.6 MiB/s) with 1 file(s) remaining
Completed 626.5 MiB/660.5 MiB (27.6 MiB/s) with 1 file(s) remaining
Completed 626.8 MiB/660.5 MiB (27.6 MiB/s) with 1 file(s) remaining
Completed 627.0 MiB/660.5 MiB (27.6 MiB/s) with 1 file(s) remaining
Completed 627.2 MiB/660.5 MiB (27.5 MiB/s) with 1 file(s) remaining
Completed 627.5 MiB/660.5 MiB (27.6 MiB/s) with 1 file(s) remaining
Completed 627.8 MiB/660.5 MiB (27.5 MiB/s) with 1 file(s) remaining
Completed 628.0 MiB/660.5 MiB (27.6 MiB/s) with 1 file(s) remaining
Completed 628.2 MiB/660.5 MiB (27.5 MiB/s) with 1 file(s) remaining
Completed 628.5 MiB/660.5 MiB (27.6 MiB/s) with 1 file(s) remaining
Completed 628.8 MiB/660.5 MiB (27.6 MiB/s) with 1 file(s) remaining
Completed 629.0 MiB/660.5 MiB (27.6 MiB/s) with 1 file(s) remaining
Completed 629.2 MiB/660.5 MiB (27.6 MiB/s) with 1 file(s) remaining
Completed 629.5 MiB/660.5 MiB (27.6 MiB/s) with 1 file(s) remaining
Completed 629.8 MiB/660.5 MiB (27.6 MiB/s) with 1 file(s) remaining
Completed 630.0 MiB/660.5 MiB (27.6 MiB/s) with 1 file(s) remaining
Completed 630.2 MiB/660.5 MiB (27.6 MiB/s) with 1 file(s) remaining
Completed 630.5 MiB/660.5 MiB (27.5 MiB/s) with 1 file(s) remaining
Completed 630.8 MiB/660.5 MiB (27.5 MiB/s) with 1 file(s) remaining
Completed 631.0 MiB/660.5 MiB (27.5 MiB/s) with 1 file(s) remaining
Completed 631.2 MiB/660.5 MiB (27.5 MiB/s) with 1 file(s) remaining
Completed 631.5 MiB/660.5 MiB (27.5 MiB/s) with 1 file(s) remaining
Completed 631.8 MiB/660.5 MiB (27.5 MiB/s) with 1 file(s) remaining
Completed 632.0 MiB/660.5 MiB (27.5 MiB/s) with 1 file(s) remaining
Completed 632.2 MiB/660.5 MiB (27.5 MiB/s) with 1 file(s) remaining
Completed 632.5 MiB/660.5 MiB (27.5 MiB/s) with 1 file(s) remaining
Completed 632.8 MiB/660.5 MiB (27.5 MiB/s) with 1 file(s) remaining
Completed 633.0 MiB/660.5 MiB (27.5 MiB/s) with 1 file(s) remaining
Completed 633.2 MiB/660.5 MiB (27.5 MiB/s) with 1 file(s) remaining
Completed 633.5 MiB/660.5 MiB (27.5 MiB/s) with 1 file(s) remaining
Completed 633.8 MiB/660.5 MiB (27.5 MiB/s) with 1 file(s) remaining
Completed 634.0 MiB/660.5 MiB (27.5 MiB/s) with 1 file(s) remaining
Completed 634.2 MiB/660.5 MiB (27.5 MiB/s) with 1 file(s) remaining
Completed 634.5 MiB/660.5 MiB (27.5 MiB/s) with 1 file(s) remaining
Completed 634.8 MiB/660.5 MiB (27.5 MiB/s) with 1 file(s) remaining
Completed 635.0 MiB/660.5 MiB (27.5 MiB/s) with 1 file(s) remaining
Completed 635.2 MiB/660.5 MiB (27.5 MiB/s) with 1 file(s) remaining
Completed 635.5 MiB/660.5 MiB (27.5 MiB/s) with 1 file(s) remaining
Completed 635.8 MiB/660.5 MiB (27.5 MiB/s) with 1 file(s) remaining
Completed 636.0 MiB/660.5 MiB (27.5 MiB/s) with 1 file(s) remaining
Completed 636.2 MiB/660.5 MiB (27.5 MiB/s) with 1 file(s) remaining
Completed 636.5 MiB/660.5 MiB (27.5 MiB/s) with 1 file(s) remaining
Completed 636.8 MiB/660.5 MiB (27.5 MiB/s) with 1 file(s) remaining
Completed 637.0 MiB/660.5 MiB (27.5 MiB/s) with 1 file(s) remaining
Completed 637.2 MiB/660.5 MiB (27.5 MiB/s) with 1 file(s) remaining
Completed 637.5 MiB/660.5 MiB (27.5 MiB/s) with 1 file(s) remaining
Completed 637.8 MiB/660.5 MiB (27.5 MiB/s) with 1 file(s) remaining
Completed 638.0 MiB/660.5 MiB (27.5 MiB/s) with 1 file(s) remaining
Completed 638.2 MiB/660.5 MiB (27.5 MiB/s) with 1 file(s) remaining
Completed 638.5 MiB/660.5 MiB (27.5 MiB/s) with 1 file(s) remaining
Completed 638.8 MiB/660.5 MiB (27.5 MiB/s) with 1 file(s) remaining
Completed 639.0 MiB/660.5 MiB (27.5 MiB/s) with 1 file(s) remaining
Completed 639.2 MiB/660.5 MiB (27.4 MiB/s) with 1 file(s) remaining
Completed 639.5 MiB/660.5 MiB (27.4 MiB/s) with 1 file(s) remaining
Completed 639.8 MiB/660.5 MiB (27.4 MiB/s) with 1 file(s) remaining
Completed 640.0 MiB/660.5 MiB (27.4 MiB/s) with 1 file(s) remaining
Completed 640.2 MiB/660.5 MiB (27.4 MiB/s) with 1 file(s) remaining
Completed 640.5 MiB/660.5 MiB (27.4 MiB/s) with 1 file(s) remaining
Completed 640.8 MiB/660.5 MiB (27.4 MiB/s) with 1 file(s) remaining
Completed 641.0 MiB/660.5 MiB (27.4 MiB/s) with 1 file(s) remaining
Completed 641.2 MiB/660.5 MiB (27.4 MiB/s) with 1 file(s) remaining
Completed 641.5 MiB/660.5 MiB (27.4 MiB/s) with 1 file(s) remaining
Completed 641.8 MiB/660.5 MiB (27.4 MiB/s) with 1 file(s) remaining
Completed 642.0 MiB/660.5 MiB (27.4 MiB/s) with 1 file(s) remaining
Completed 642.2 MiB/660.5 MiB (27.4 MiB/s) with 1 file(s) remaining
Completed 642.5 MiB/660.5 MiB (27.3 MiB/s) with 1 file(s) remaining
Completed 642.8 MiB/660.5 MiB (27.4 MiB/s) with 1 file(s) remaining
Completed 643.0 MiB/660.5 MiB (27.3 MiB/s) with 1 file(s) remaining
Completed 643.2 MiB/660.5 MiB (27.3 MiB/s) with 1 file(s) remaining
Completed 643.5 MiB/660.5 MiB (27.3 MiB/s) with 1 file(s) remaining
Completed 643.8 MiB/660.5 MiB (27.3 MiB/s) with 1 file(s) remaining
Completed 644.0 MiB/660.5 MiB (27.3 MiB/s) with 1 file(s) remaining
Completed 644.2 MiB/660.5 MiB (27.3 MiB/s) with 1 file(s) remaining
Completed 644.5 MiB/660.5 MiB (27.3 MiB/s) with 1 file(s) remaining
Completed 644.8 MiB/660.5 MiB (27.3 MiB/s) with 1 file(s) remaining
Completed 645.0 MiB/660.5 MiB (27.3 MiB/s) with 1 file(s) remaining
Completed 645.2 MiB/660.5 MiB (27.3 MiB/s) with 1 file(s) remaining
Completed 645.5 MiB/660.5 MiB (27.3 MiB/s) with 1 file(s) remaining
Completed 645.8 MiB/660.5 MiB (27.3 MiB/s) with 1 file(s) remaining
Completed 646.0 MiB/660.5 MiB (27.3 MiB/s) with 1 file(s) remaining
Completed 646.2 MiB/660.5 MiB (27.3 MiB/s) with 1 file(s) remaining
Completed 646.5 MiB/660.5 MiB (27.3 MiB/s) with 1 file(s) remaining
Completed 646.8 MiB/660.5 MiB (27.3 MiB/s) with 1 file(s) remaining
Completed 647.0 MiB/660.5 MiB (27.3 MiB/s) with 1 file(s) remaining
Completed 647.2 MiB/660.5 MiB (27.3 MiB/s) with 1 file(s) remaining
Completed 647.5 MiB/660.5 MiB (27.3 MiB/s) with 1 file(s) remaining
Completed 647.8 MiB/660.5 MiB (27.3 MiB/s) with 1 file(s) remaining
Completed 648.0 MiB/660.5 MiB (27.3 MiB/s) with 1 file(s) remaining
Completed 648.2 MiB/660.5 MiB (27.3 MiB/s) with 1 file(s) remaining
Completed 648.5 MiB/660.5 MiB (27.3 MiB/s) with 1 file(s) remaining
Completed 648.8 MiB/660.5 MiB (27.3 MiB/s) with 1 file(s) remaining
Completed 649.0 MiB/660.5 MiB (27.3 MiB/s) with 1 file(s) remaining
Completed 649.2 MiB/660.5 MiB (27.3 MiB/s) with 1 file(s) remaining
Completed 649.5 MiB/660.5 MiB (27.3 MiB/s) with 1 file(s) remaining
Completed 649.8 MiB/660.5 MiB (27.3 MiB/s) with 1 file(s) remaining
Completed 650.0 MiB/660.5 MiB (27.3 MiB/s) with 1 file(s) remaining
Completed 650.2 MiB/660.5 MiB (27.2 MiB/s) with 1 file(s) remaining
Completed 650.5 MiB/660.5 MiB (27.2 MiB/s) with 1 file(s) remaining
Completed 650.7 MiB/660.5 MiB (27.2 MiB/s) with 1 file(s) remaining
Completed 651.0 MiB/660.5 MiB (27.2 MiB/s) with 1 file(s) remaining
Completed 651.2 MiB/660.5 MiB (27.2 MiB/s) with 1 file(s) remaining
Completed 651.5 MiB/660.5 MiB (27.2 MiB/s) with 1 file(s) remaining
Completed 651.7 MiB/660.5 MiB (27.2 MiB/s) with 1 file(s) remaining
Completed 652.0 MiB/660.5 MiB (27.1 MiB/s) with 1 file(s) remaining
Completed 652.2 MiB/660.5 MiB (27.1 MiB/s) with 1 file(s) remaining
Completed 652.5 MiB/660.5 MiB (27.0 MiB/s) with 1 file(s) remaining
Completed 652.7 MiB/660.5 MiB (27.0 MiB/s) with 1 file(s) remaining
Completed 653.0 MiB/660.5 MiB (27.0 MiB/s) with 1 file(s) remaining
Completed 653.2 MiB/660.5 MiB (27.0 MiB/s) with 1 file(s) remaining
Completed 653.5 MiB/660.5 MiB (27.0 MiB/s) with 1 file(s) remaining
Completed 653.7 MiB/660.5 MiB (27.0 MiB/s) with 1 file(s) remaining
Completed 654.0 MiB/660.5 MiB (26.9 MiB/s) with 1 file(s) remaining
Completed 654.2 MiB/660.5 MiB (26.9 MiB/s) with 1 file(s) remaining
Completed 654.5 MiB/660.5 MiB (26.9 MiB/s) with 1 file(s) remaining
Completed 654.7 MiB/660.5 MiB (26.9 MiB/s) with 1 file(s) remaining
Completed 655.0 MiB/660.5 MiB (26.8 MiB/s) with 1 file(s) remaining
Completed 655.2 MiB/660.5 MiB (26.9 MiB/s) with 1 file(s) remaining
Completed 655.5 MiB/660.5 MiB (26.8 MiB/s) with 1 file(s) remaining
Completed 655.7 MiB/660.5 MiB (26.8 MiB/s) with 1 file(s) remaining
Completed 656.0 MiB/660.5 MiB (26.8 MiB/s) with 1 file(s) remaining
Completed 656.2 MiB/660.5 MiB (26.8 MiB/s) with 1 file(s) remaining
Completed 656.5 MiB/660.5 MiB (26.7 MiB/s) with 1 file(s) remaining
Completed 656.7 MiB/660.5 MiB (26.7 MiB/s) with 1 file(s) remaining
Completed 657.0 MiB/660.5 MiB (26.7 MiB/s) with 1 file(s) remaining
Completed 657.2 MiB/660.5 MiB (26.7 MiB/s) with 1 file(s) remaining
Completed 657.5 MiB/660.5 MiB (26.7 MiB/s) with 1 file(s) remaining
Completed 657.7 MiB/660.5 MiB (26.6 MiB/s) with 1 file(s) remaining
Completed 658.0 MiB/660.5 MiB (26.6 MiB/s) with 1 file(s) remaining
Completed 658.2 MiB/660.5 MiB (26.5 MiB/s) with 1 file(s) remaining
Completed 658.5 MiB/660.5 MiB (26.3 MiB/s) with 1 file(s) remaining
Completed 658.7 MiB/660.5 MiB (26.2 MiB/s) with 1 file(s) remaining
Completed 659.0 MiB/660.5 MiB (26.1 MiB/s) with 1 file(s) remaining
Completed 659.2 MiB/660.5 MiB (26.0 MiB/s) with 1 file(s) remaining
Completed 659.5 MiB/660.5 MiB (25.9 MiB/s) with 1 file(s) remaining
Completed 659.7 MiB/660.5 MiB (25.9 MiB/s) with 1 file(s) remaining
Completed 660.0 MiB/660.5 MiB (25.8 MiB/s) with 1 file(s) remaining
Completed 660.2 MiB/660.5 MiB (25.8 MiB/s) with 1 file(s) remaining
Completed 660.5 MiB/660.5 MiB (25.7 MiB/s) with 1 file(s) remaining
download: s3://dmap-epa-prod-anotedata/RShade/Rounded/HorizonAngle/17d.tif to data/HorizonAngle/17d.tif
Extracting Horizon Angle Values
Horizon Angle Extraction Complete
The next two steps extract vegetation cover and height values from the resampled Landfire grids. The more angles and distances sampled, the longer these steps will take.
RShade_points <- star_sample(RShade_points, veg_height, star_sample_angles, star_sample_distances, type="hght")
Extracting Raster Values
Complete
RShade_points <- star_sample(RShade_points, veg_cover, star_sample_angles, star_sample_distances, type="dens")
Extracting Raster Values
Complete
The final step calculates additional columns that are needed for processing in RShade. This is done at the end because many of the columns are based on other columns that were calculated as a part of RShade.
RShade_points <- finalize_cols(RShade_points)
Complete
If you have additional columns you want to add to the output, you can upload a table that contains the columns you want to include along with a text field containing ID values called NDHPlusIDt. Edit the block below to include the path to the excel or csv.
```r
additional_table <- \data/Test_table.xlsx\
RShade_points <- copy_table(RShade_points, nhdr_lines, additional_table)
<!-- rnb-source-end -->
<!-- rnb-chunk-end -->
<!-- rnb-text-begin -->
The final optional steps allow you to export the final result as either a .csv or
shapefile. These can then be downloaded from the "Files" window.
<!-- rnb-text-end -->
<!-- rnb-chunk-begin -->
<!-- rnb-source-begin eyJkYXRhIjoiYGBgclxuYGBgclxuc3Rfd3JpdGUoUlNoYWRlX3BvaW50cywgXFxkYXRhL091dHB1dC5zaHBcXClcbmBgYFxuYGBgIn0= -->
```r
```r
st_write(RShade_points, \data/Output.shp\)
<!-- rnb-source-end -->
<!-- rnb-chunk-end -->
<!-- rnb-text-begin -->
<!-- rnb-text-end -->
<!-- rnb-chunk-begin -->
<!-- rnb-source-begin eyJkYXRhIjoiYGBgclxuYGBgclxud3JpdGVfY3N2KFJTaGFkZV9wb2ludHMsIFxcZGF0YS9PdXRwdXQuY3N2XFwpXG5gYGBcbmBgYCJ9 -->
```r
```r
write_csv(RShade_points, \data/Output.csv\)
```